diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-05 06:09:51 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-05 23:33:56 +0100 |
commit | 3d7a1b84c5bc3219c6076e492d6e98c27f2c1f86 (patch) | |
tree | 9ea08f987a1286b02a1f9842285038bbe7b89901 /gnu/packages | |
parent | 3aa3aea2b0102d5641575816a615f4fff361a314 (diff) | |
download | guix-3d7a1b84c5bc3219c6076e492d6e98c27f2c1f86.tar.gz |
gnu: mdadm: Update to 4.2.
* gnu/packages/linux.scm (mdadm): Update to 4.2. [arguments]: Don't explicitly return #t from phases.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/linux.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 5fe2025176..cc72c1821f 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -5022,7 +5022,7 @@ MPEG-2 and audio over Linux IEEE 1394.") (define-public mdadm (package (name "mdadm") - (version "4.1") + (version "4.2") (source (origin (method url-fetch) (uri (string-append @@ -5030,7 +5030,7 @@ MPEG-2 and audio over Linux IEEE 1394.") version ".tar.xz")) (sha256 (base32 - "0jjgjgqijpdp7ijh8slzzjjw690kydb1jjadf0x5ilq85628hxmb")))) + "07ghmibmbnkdy91ng87zdllzicm299l20dhs9m5bfjw6f1b22726")))) (build-system gnu-build-system) (inputs `(("udev" ,eudev))) @@ -5052,15 +5052,13 @@ MPEG-2 and audio over Linux IEEE 1394.") "coreutils"))) (substitute* "udev-md-raid-arrays.rules" (("/usr/bin/(readlink|basename)" all program) - (string-append coreutils "/bin/" program)))) - #t)) + (string-append coreutils "/bin/" program)))))) (add-before 'build 'remove-W-error (lambda _ ;; We cannot build with -Werror on i686 due to a ;; 'sign-compare' warning in util.c. (substitute* "Makefile" - (("-Werror") "")) - #t)) + (("-Werror") "")))) (delete 'configure)) ;;tests must be done as root #:tests? #f)) |