summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Duskett <aduskett@gmail.com>2018-02-06 12:40:35 -0500
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2018-02-08 22:21:10 +0100
commit2ab611c40ff08bd4a7922456fed22af6953af3b1 (patch)
tree53f1c6096b393c6c95103bb899064b36deb9745d
parent62099784d40333079a811503bc4f5cd138d9f6ed (diff)
downloadbuildroot-2ab611c40ff08bd4a7922456fed22af6953af3b1.tar.gz
buildroot-2ab611c40ff08bd4a7922456fed22af6953af3b1.zip
ncurses: fix build failure with ncurses 6.1
Ncurses 6.1 introduced the config option --disable-stripping which is set to no by default. Set this option to ensure that ncurses doesn't try to strip the executables. Fixes: http://autobuild.buildroot.net/results/3a5ddfcf7cd3a5c2bc068e3e33c823d6bcd3e79b Signed-off-by: Adam Duskett <aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r--package/ncurses/ncurses.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/package/ncurses/ncurses.mk b/package/ncurses/ncurses.mk
index eccfbecb8b..90cf4a4dc5 100644
--- a/package/ncurses/ncurses.mk
+++ b/package/ncurses/ncurses.mk
@@ -25,6 +25,7 @@ NCURSES_CONF_OPTS = \
--enable-const \
--enable-overwrite \
--enable-pc-files \
+ --disable-stripping \
--with-pkg-config-libdir="/usr/lib/pkgconfig" \
$(if $(BR2_PACKAGE_NCURSES_TARGET_PROGS),,--without-progs) \
--without-manpages
OpenPOWER on IntegriCloud