summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEnrico Weigelt, metux IT consult <info@metux.net>2021-01-14 11:02:16 +0100
committerMasahiro Yamada <masahiroy@kernel.org>2021-01-27 03:17:42 +0900
commitcf81c3abe1b84c4b82fbe771f72e6d181a3d1b7c (patch)
tree12e75c4222907392d85c314450e9319133fa5ac5
parent9b6164342e981d751e69f5a165dd596ffcdfd6fe (diff)
downloadlinux-stable-cf81c3abe1b84c4b82fbe771f72e6d181a3d1b7c.tar.gz
linux-stable-cf81c3abe1b84c4b82fbe771f72e6d181a3d1b7c.tar.bz2
linux-stable-cf81c3abe1b84c4b82fbe771f72e6d181a3d1b7c.zip
kconfig: mconf: fix HOSTCC call
Commit c0f975af1745 ("kconfig: Support building mconf with vendor sysroot ncurses") introduces a bug when HOSTCC contains parameters: the whole command line is treated as the program name (with spaces in it). Therefore, we have to remove the quotes. Fixes: c0f975af1745 ("kconfig: Support building mconf with vendor sysroot ncurses") Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
-rwxr-xr-xscripts/kconfig/mconf-cfg.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/mconf-cfg.sh b/scripts/kconfig/mconf-cfg.sh
index fcd4acd4e9cb..b520e407a8eb 100755
--- a/scripts/kconfig/mconf-cfg.sh
+++ b/scripts/kconfig/mconf-cfg.sh
@@ -35,7 +35,7 @@ fi
# As a final fallback before giving up, check if $HOSTCC knows of a default
# ncurses installation (e.g. from a vendor-specific sysroot).
-if echo '#include <ncurses.h>' | "${HOSTCC}" -E - >/dev/null 2>&1; then
+if echo '#include <ncurses.h>' | ${HOSTCC} -E - >/dev/null 2>&1; then
echo cflags=\"-D_GNU_SOURCE\"
echo libs=\"-lncurses\"
exit 0