ncurses: remove dedicated target-headers option

Instead, simply only copy headers/static lib if BR2_HAVE_DEVFILES
is enabled.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2009-10-03 22:42:52 +02:00
parent d1bce5051b
commit 58508f39cc
2 changed files with 2 additions and 12 deletions

View File

@ -23,9 +23,3 @@ config BR2_PACKAGE_NCURSES_TARGET_MENU
depends on BR2_PACKAGE_NCURSES
help
Includes ncurses dynamic libmenu in target
config BR2_PACKAGE_NCURSES_TARGET_HEADERS
bool "ncurses headers in target"
depends on BR2_PACKAGE_NCURSES
help
Ncurses headers in target

View File

@ -152,12 +152,11 @@ $(TARGET_DIR)/usr/lib/libncurses.a: $(NCURSES_DIR)/lib/libncurses.a
-$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libncurses.so.$(NCURSES_VERSION)
touch -c $@
ncurses: $(TARGET_DIR)/usr/lib/libncurses.so.$(NCURSES_VERSION)
ncurses: $(TARGET_DIR)/usr/lib/libncurses.so.$(NCURSES_VERSION) \
$(if $(BR2_HAVE_DEVFILES),$(TARGET_DIR)/usr/lib/libncurses.a)
ncurses-unpacked: $(NCURSES_DIR)/.patched
ncurses-headers: $(TARGET_DIR)/usr/lib/libncurses.a
ncurses-source: $(DL_DIR)/$(NCURSES_SOURCE)
ncurses-clean:
@ -178,6 +177,3 @@ ncurses-dirclean:
ifeq ($(BR2_PACKAGE_NCURSES),y)
TARGETS+=ncurses
endif
ifeq ($(BR2_PACKAGE_NCURSES_TARGET_HEADERS),y)
TARGETS+=ncurses-headers
endif