From a3c42641c72d19ca244ab15f38128c5f8b195f4a 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