diff --git a/Makefile b/Makefile index 3f5c3d3b2f..78b44c5e4b 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,11 @@ # You shouldn't need to mess with anything beyond this point... #-------------------------------------------------------------- +# we want bash as shell +SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ + else if [ -x /bin/bash ]; then echo /bin/bash; \ + else echo sh; fi; fi) + # Trick for always running with a fixed umask UMASK = 0022 ifneq ($(shell umask),$(UMASK)) @@ -227,11 +232,6 @@ else Q = @ endif -# we want bash as shell -SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ - else if [ -x /bin/bash ]; then echo /bin/bash; \ - else echo sh; fi; fi) - # kconfig uses CONFIG_SHELL CONFIG_SHELL := $(SHELL)