From 5fe9f9102cbfa408622e6923fff93ca326363b79 Mon Sep 17 00:00:00 2001 From: Lukas Juhrich Date: Fri, 21 Oct 2022 01:19:17 +0200 Subject: [PATCH] Fix bash detection --- configure.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.mk b/configure.mk index c930624a..e20647bd 100755 --- a/configure.mk +++ b/configure.mk @@ -6,7 +6,7 @@ NULL := # Shell # # ----- # -SHELL := $(shell command -v bash) +SHELL := $(shell : && command -v bash) ifeq ($(strip $(SHELL)),) $(error Could not find bash) endif