diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-06 13:14:29 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-06 13:14:29 +0000 |
commit | 60eef7aefd7f203415f5c536b41869922bebf439 (patch) | |
tree | 5f517ade2c602c3d35c6e887f47efa00ce4780be /include/host-build.mk | |
parent | 1162d6b721848d3b48d9a3b044c3cd68ee82febc (diff) | |
download | upstream-60eef7aefd7f203415f5c536b41869922bebf439.tar.gz upstream-60eef7aefd7f203415f5c536b41869922bebf439.tar.bz2 upstream-60eef7aefd7f203415f5c536b41869922bebf439.zip |
include: use SHELL, not BASH for HOST_CONFIGURE_VARS
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 44295
Diffstat (limited to 'include/host-build.mk')
-rw-r--r-- | include/host-build.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/host-build.mk b/include/host-build.mk index b93f70ffd5..2f3c53d098 100644 --- a/include/host-build.mk +++ b/include/host-build.mk @@ -55,7 +55,7 @@ HOST_CONFIGURE_VARS = \ CFLAGS="$(HOST_CFLAGS)" \ CPPFLAGS="$(HOST_CPPFLAGS)" \ LDFLAGS="$(HOST_LDFLAGS)" \ - SHELL="$(BASH)" + SHELL="$(SHELL)" HOST_CONFIGURE_ARGS = \ --target=$(GNU_HOST_NAME) \ |