summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 70eb916..167097d 100644
--- a/Makefile
+++ b/Makefile
@@ -53,7 +53,11 @@ CONFIG_SHELL := \
if [ -x "$$BASH" ]; then \
echo $$BASH; \
else \
- if [ -x /bin/bash ]; then echo /bin/bash; else echo sh; fi; \
+ if [ -x /bin/bash ]; then \
+ echo /bin/bash; \
+ else \
+ echo /bin/sh; \
+ fi; \
fi)
SHELL := $(CONFIG_SHELL)
export SHELL CONFIG_SHELL