[source] e2fsprogs: List all libraries explicitly

LEDE Commits lede-commits at lists.infradead.org
Thu Sep 8 04:40:14 PDT 2016


blogic pushed a commit to source.git, branch master:
https://git.lede-project.org/2728512e1553301f2b13aba8497302f577a1f0eb

commit 2728512e1553301f2b13aba8497302f577a1f0eb
Author: Florian Fainelli <f.fainelli at gmail.com>
AuthorDate: Wed Sep 7 10:25:34 2016 -0700

    e2fsprogs: List all libraries explicitly
    
    e2fsprogs would fail linking with external toolchains which would not be able
    to find several dependencies, explicit them.
    
    Signed-off-by: Florian Fainelli <f.fainelli at gmail.com>
---
 package/utils/e2fsprogs/Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/package/utils/e2fsprogs/Makefile b/package/utils/e2fsprogs/Makefile
index 4e25ab0..debc5ba 100644
--- a/package/utils/e2fsprogs/Makefile
+++ b/package/utils/e2fsprogs/Makefile
@@ -44,6 +44,7 @@ define Package/libext2fs
 $(call Package/e2fsprogs/Default)
   SECTION:=libs
   CATEGORY:=Libraries
+  DEPENDS:=+libuuid
   TITLE:=ext2/3/4 filesystem library
 endef
 
@@ -138,6 +139,8 @@ define Build/Compile
 		BUILDCC="$(HOSTCC)" \
 		DESTDIR="$(PKG_INSTALL_DIR)" \
 		LIBBLKID="$(PKG_BUILD_DIR)/lib/libblkid.a -luuid" \
+		ELF_OTHER_LIBS="$(TARGET_LDFLAGS) -luuid" \
+		SYSLIBS="$(TARGET_LDFLAGS) -ldl -L$(PKG_BUILD_DIR)/lib/ -lcom_err" \
 		V=$(if $(findstring c,$(OPENWRT_VERBOSE)),1,) \
 		all
 endef



More information about the lede-commits mailing list