summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau2021-02-15 22:59:18 +0000
committerFelix Fietkau2021-02-15 23:00:14 +0000
commit46b6ee7ffc457af8aad1a0f7e5936f50041141d8 (patch)
tree4bf5804ac96cf31c74013d7a3ff5958b54342511
parent7d6a636918bccf68b49324729759e7c569105f71 (diff)
downloadopenwrt-46b6ee7ffc457af8aad1a0f7e5936f50041141d8.tar.gz
util-linux: move libuuid BuildPackage line further up to fix ABI versioning
After the ABI version rework, packages need to be declared in the order of their dependencies, so that dependent packages will use the right ABI version Signed-off-by: Felix Fietkau <nbd@nbd.name>
-rw-r--r--package/utils/util-linux/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/package/utils/util-linux/Makefile b/package/utils/util-linux/Makefile
index f4b870cc47..b385030e39 100644
--- a/package/utils/util-linux/Makefile
+++ b/package/utils/util-linux/Makefile
@@ -791,11 +791,13 @@ define Package/wipefs/install
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/wipefs $(1)/usr/sbin/
endef
+# these lines need to be ordered by dependency because of ABI versioning
+$(eval $(call BuildPackage,libuuid))
$(eval $(call BuildPackage,libblkid))
$(eval $(call BuildPackage,libfdisk))
+
$(eval $(call BuildPackage,libmount))
$(eval $(call BuildPackage,libsmartcols))
-$(eval $(call BuildPackage,libuuid))
$(eval $(call BuildPackage,agetty))
$(eval $(call BuildPackage,blkdiscard))
$(eval $(call BuildPackage,blkid))