diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-12-25 17:06:42 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-12-25 17:10:51 +0100 |
commit | 957fe1c2086a1a4dd327e3f39cfc939e2d41a6df (patch) | |
tree | cddd370495dbeed58d9e185976780f95235e95b2 /gnu/packages/compression.scm | |
parent | c3cfa732512bbf34e807392a76f6f5b7d9860d24 (diff) | |
download | patches-957fe1c2086a1a4dd327e3f39cfc939e2d41a6df.tar patches-957fe1c2086a1a4dd327e3f39cfc939e2d41a6df.tar.gz |
gnu: squashfs-tools: Update to 4.4.
* gnu/packages/compression.scm (squashfs-tools): Update to 4.4.
[arguments]: Remove obsolete ‘fix-glibc-compatability’ phase.
Diffstat (limited to 'gnu/packages/compression.scm')
-rw-r--r-- | gnu/packages/compression.scm | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index bb1c5b625c..02e4e324b9 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -779,7 +779,7 @@ time for compression ratio.") (define-public squashfs-tools (package (name "squashfs-tools") - (version "4.3") + (version "4.4") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/squashfs/squashfs/" @@ -787,10 +787,10 @@ time for compression ratio.") "squashfs" version ".tar.gz")) (sha256 (base32 - "1xpklm0y43nd9i6jw43y2xh5zvlmj9ar2rvknh0bh7kv8c95aq0d")))) + "0zmhvczscqz0mzh4b9m8m42asq14db0a6lc8clp5ljq5ybrv70d9")))) (build-system gnu-build-system) (arguments - '(#:tests? #f ; no check target + '(#:tests? #f ; no check target #:make-flags (list "CC=gcc" "XZ_SUPPORT=1" @@ -802,13 +802,6 @@ time for compression ratio.") (replace 'configure (lambda _ (chdir "squashfs-tools") - #t)) - (add-after 'unpack 'fix-glibc-compatability - (lambda _ - (substitute* '("squashfs-tools/mksquashfs.c" - "squashfs-tools/unsquashfs.c") - (("<sys/sysinfo.h>") - "<sys/sysinfo.h>\n#include <sys/sysmacros.h>")) #t))))) (inputs `(("lz4" ,lz4) |