Commit 58508f39 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

ncurses: remove dedicated target-headers option



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

Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent d1bce505
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -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
+2 −6
Original line number Diff line number Diff line
@@ -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