Commit 6f859729 authored by Clark Rawlins's avatar Clark Rawlins Committed by Peter Korsgaard
Browse files

Create $(TARGET_DIR)/usr/lib when installing



In some configurations $(TARGET_DIR)/usr/lib isn't
created before the target install target for libncurses
is run.  This change makes sure it is created before
the install target copies files to it.

Signed-off-by: default avatarClark Rawlins <clark@bit63.org>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent cf102807
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

	Additional fixes and cleanups.

	Updated/fixed packages: alsamixergui, fltk
	Updated/fixed packages: alsamixergui, fltk, ncurses

	Issues resolved (http://bugs.uclibc.org):

+1 −0
Original line number Diff line number Diff line
@@ -105,6 +105,7 @@ $(STAGING_DIR)/usr/lib/libncurses.so.$(NCURSES_VERSION): $(NCURSES_DIR)/lib/libn
	touch -c $@

$(TARGET_DIR)/usr/lib/libncurses.so.$(NCURSES_VERSION): $(STAGING_DIR)/usr/lib/libncurses.so.$(NCURSES_VERSION)
	mkdir -p $(TARGET_DIR)/usr/lib
	cp -dpf $(NCURSES_DIR)/lib/libncurses.so* $(TARGET_DIR)/usr/lib/
ifeq ($(BR2_PACKAGE_NCURSES_TARGET_PANEL),y)
	cp -dpf $(NCURSES_DIR)/lib/libpanel.so* $(TARGET_DIR)/usr/lib/