diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-13 20:45:20 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-17 02:09:58 +0200 |
commit | d0a5e67cd42eeee14859901f4a6b03992da56d3e (patch) | |
tree | c3321d0befc2a6288d2de9324431644cf72e36f2 | |
parent | 8764579a867810dcee58c8ecde21bca852d4162c (diff) |
set CONFIG_SHELL to unbreak x86_64 x32 build on a system without /bin/sh being /bin/bash
-rw-r--r-- | toolchain/glibc/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/glibc/Makefile.inc b/toolchain/glibc/Makefile.inc index f84531516..72b51d254 100644 --- a/toolchain/glibc/Makefile.inc +++ b/toolchain/glibc/Makefile.inc @@ -21,7 +21,7 @@ GLIBC_CONFOPTS:= --build=$(GNU_HOST_NAME) \ --enable-kernel="2.6.32" \ --enable-add-ons GLIBC_ENV:= PATH='${TARGET_PATH}' \ - SHELL='${SHELL}' \ + CONFIG_SHELL='$(strip ${SHELL})' \ BUILD_CC=${CC_FOR_BUILD} \ CFLAGS="$(TARGET_CFLAGS)" \ CC="${TARGET_CC}" \ |