From: Gustavo Zacarias Date: Wed, 18 Sep 2013 13:38:03 +0000 (-0300) Subject: pciutils: fixup library permissions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=95cc2aab61f9c8ea21d4b1cc45f4aa13310e9637;p=buildroot.git pciutils: fixup library permissions libpci.so* is installed without +x permissions thus preventing stripping. Fix it up in the post install target hooks. Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- diff --git a/package/pciutils/pciutils.mk b/package/pciutils/pciutils.mk index 350ca0d352..fd6f8aa57d 100644 --- a/package/pciutils/pciutils.mk +++ b/package/pciutils/pciutils.mk @@ -65,4 +65,12 @@ define PCIUTILS_INSTALL_STAGING_CMDS SHARED=$(PCIUTILS_SHARED) install install-lib endef + +# Library lacks +x so strip skips it +define PCIUTILS_FIX_LIBRARY_MODE + -chmod +x $(TARGET_DIR)/usr/lib/libpci.so* +endef + +PCIUTILS_POST_INSTALL_TARGET_HOOKS += PCIUTILS_FIX_LIBRARY_MODE + $(eval $(generic-package))