[Buildroot] [PATCH] pciutils: SHARED make opt goes for install too

Gustavo Zacarias gustavo at zacarias.com.ar
Mon Jan 10 13:47:23 UTC 2011


If we don't pass SHARED when installing we miss the shared library
symlinks (libpci.so & libpci.so.3)
On internal and external toolchains that have a proper cross ldconfig
this isn't a problem but it breaks on toolchains that lack a cross ldconfig to
automagically make the symlinks.

Signed-off-by: Gustavo Zacarias <gustavo at zacarias.com.ar>
---
 package/pciutils/pciutils.mk |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/pciutils/pciutils.mk b/package/pciutils/pciutils.mk
index 6e16300..782d348 100644
--- a/package/pciutils/pciutils.mk
+++ b/package/pciutils/pciutils.mk
@@ -39,8 +39,10 @@ endef
 
 # Ditch install-lib if SHARED is an option in the future
 define PCIUTILS_INSTALL_TARGET_CMDS
-	$(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr install
-	$(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr install-lib
+	$(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \
+		SHARED=$(PCIUTILS_SHARED) install
+	$(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \
+		SHARED=$(PCIUTILS_SHARED) install-lib
 endef
 
 $(eval $(call GENTARGETS,package,pciutils))
-- 
1.7.3.4



More information about the buildroot mailing list