summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <w.brodkorb@deubert.it>2016-02-19 04:42:37 +0100
committerWaldemar Brodkorb <w.brodkorb@deubert.it>2016-02-19 04:42:51 +0100
commit5f15cd1ef60cc4d8693610f91e3b49f722ed0b79 (patch)
tree481696a03649cd027e272b033e8b3426d1231f2d
parent6419b4f50d761a562cb95633cecab594fd6f128d (diff)
we need to quote correctly if clang -fbracket... is used, reported by Christoph
-rw-r--r--package/ncurses/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/ncurses/Makefile b/package/ncurses/Makefile
index 097708363..cf5aa1aa1 100644
--- a/package/ncurses/Makefile
+++ b/package/ncurses/Makefile
@@ -36,7 +36,7 @@ CONFIGURE_ENV+= ac_cv_linux_vers=2 \
PKG_CONFIG_LIBDIR=/usr/lib/pkgconfig
CONFIGURE_ARGS+= --without-cxx \
--without-cxx-binding \
- --with-build-cc=${HOST_CC} \
+ --with-build-cc="${HOST_CC}" \
--without-progs \
--disable-termcap \
--enable-symlinks \
@@ -64,7 +64,7 @@ INSTALL_TARGET:= install.libs install.data
HOST_ALL_TARGET:= progs
HOST_INSTALL_TARGET:= install.includes install.progs
HOST_CONFIGURE_ARGS+= --without-shared \
- --with-build-cc=${HOST_CC} \
+ --with-build-cc="${HOST_CC}" \
--with-progs \
--with-ticlib \
--disable-tic-depends \