]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
squashfs-tools: Add dependency to libgcc_s.so.1.
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 23 Oct 2010 15:06:40 +0000 (17:06 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 23 Oct 2010 15:06:40 +0000 (17:06 +0200)
Otherwise mksquashfs failed saying:
 libgcc_s.so.1 must be installed for pthread_cancel to work

pkgs/core/squashfs-tools/squashfs-tools.nm

index 4ee5297ac89c2d23998e4b336db1a70d3a11d1e3..cae0e4684974bdde4abe4c6358c7c84dbe7b7e58 100644 (file)
@@ -26,7 +26,7 @@ include $(PKGROOT)/Include
 
 PKG_NAME       = squashfs-tools
 PKG_VER        = 4.1
-PKG_REL        = 0
+PKG_REL        = 1
 
 PKG_MAINTAINER =
 PKG_GROUP      = System/Filesystem
@@ -36,6 +36,10 @@ PKG_SUMMARY    = Utility for the creation of squashfs filesystems.
 
 PKG_BUILD_DEPS+= libattr-devel xz-devel zlib-devel
 
+# XXX This package has a very weird dependency to libgcc_s.so.1.
+# Can we fix this in a non-hacky way?
+PKG_DEPS      += libgcc_s.so.1
+
 define PKG_DESCRIPTION
        Squashfs is a highly compressed read-only filesystem for Linux.
 endef