diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-08-30 10:15:29 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-08-30 10:15:29 +0200 |
commit | 78c67b6ce4fae9a1c43632e7562c7c67379b1a74 (patch) | |
tree | 1fb862d891e3ef8879e10827445faea12975ef16 /package | |
parent | 1c4dbb5fa7df89731e5d59f680e9dc34f24f8835 (diff) | |
download | buildroot-novena-78c67b6ce4fae9a1c43632e7562c7c67379b1a74.tar.gz buildroot-novena-78c67b6ce4fae9a1c43632e7562c7c67379b1a74.zip |
ncurses: get rid of unused BR2_PACKAGE_NCURSES_TARGET_HEADERS handling
The option was removed from Config.in in 58508f39c (ncurses: remove
dedicated target-headers option), so remove it from the makefile as
well.
Reported-by: Ian <reg-ian.ridley-buildroot@hydrix.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/ncurses/ncurses.mk | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/package/ncurses/ncurses.mk b/package/ncurses/ncurses.mk index ee101f3a3..0a498874d 100644 --- a/package/ncurses/ncurses.mk +++ b/package/ncurses/ncurses.mk @@ -40,11 +40,8 @@ NCURSES_CONF_OPT = \ --enable-echo \ --enable-const \ --enable-overwrite \ - --enable-broken_linker - -ifneq ($(BR2_PACKAGE_NCURSES_TARGET_HEADERS),y) -NCURSES_CONF_OPT += --disable-static -endif + --enable-broken_linker \ + --disable-static ifneq ($(BR2_ENABLE_DEBUG),y) NCURSES_CONF_OPT += --without-debug |