mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-08 20:30:05 -05:00
gnu: e2fsprogs: Update to 1.46.4.
This resolves a test failure on armhf-linux (when building on a aarch64-linux system). * gnu/packages/linux.scm (e2fsprogs): Update to 1.46.4. Remove trailing #t.
This commit is contained in:
parent
b2fe4c44e3
commit
80ded5b280
1 changed files with 4 additions and 6 deletions
|
@ -2176,7 +2176,7 @@ (define-public usbip-utils
|
|||
(define-public e2fsprogs
|
||||
(package
|
||||
(name "e2fsprogs")
|
||||
(version "1.46.2")
|
||||
(version "1.46.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
|
@ -2185,7 +2185,7 @@ (define-public e2fsprogs
|
|||
"e2fsprogs-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0s216nn0lv7s278v933a44fv1ibi900c94743gpp2kn9jlr0kai3"))))
|
||||
"04wp77fg842dhribgn0xvbd77idh0n7a839ga4bwy78v7i9l445i"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs `(("util-linux" ,util-linux "lib")))
|
||||
(native-inputs `(("pkg-config" ,pkg-config)
|
||||
|
@ -2227,8 +2227,7 @@ (define-public e2fsprogs
|
|||
"INSTALL_SYMLINK = sh"))
|
||||
(substitute* (find-files "." "^Makefile.in$")
|
||||
(("#!/bin/sh")
|
||||
(string-append "#!" (which "sh"))))
|
||||
#t))
|
||||
(string-append "#!" (which "sh"))))))
|
||||
(add-after 'install 'install-libs
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
|
@ -2243,8 +2242,7 @@ (define-public e2fsprogs
|
|||
(let ((archives (find-files lib "\\.a$")))
|
||||
(for-each (lambda (file)
|
||||
(chmod file #o666))
|
||||
archives))
|
||||
#t))))))
|
||||
archives))))))))
|
||||
(home-page "http://e2fsprogs.sourceforge.net/")
|
||||
(synopsis "Creating and checking ext2/ext3/ext4 file systems")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue