diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-01-31 23:48:59 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-01-31 23:48:59 +0100 |
commit | fae88ae884aa826642c1e31cf86b33b175552ef0 (patch) | |
tree | 1c67fafd758c9de3c2a67b1142a0906b3c5d4551 /gnu/packages/linux.scm | |
parent | 4fc6985c1cd81cba2e79dc8c5aa6955c97623a9c (diff) | |
download | guix-fae88ae884aa826642c1e31cf86b33b175552ef0.tar.gz |
gnu: mdadm: Update to 4.0.
* gnu/packages/linux.scm (mdadm): Update to 4.0. [arguments]: Add "CC=gcc" to #:make-flags.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 75c2a3b57d..def4be52cd 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -2467,7 +2467,7 @@ MPEG-2 and audio over Linux IEEE 1394.") (define-public mdadm (package (name "mdadm") - (version "3.4") + (version "4.0") (source (origin (method url-fetch) (uri (string-append @@ -2475,13 +2475,14 @@ MPEG-2 and audio over Linux IEEE 1394.") version ".tar.xz")) (sha256 (base32 - "0248v9f28mrbwabl94ck22gfim29sqhkf70wrpfi52nk4x3bxl17")))) + "1ad3mma641946wn5lsllwf0lifw9lps34fv1nnkhyfpd9krffshx")))) (build-system gnu-build-system) (inputs `(("udev" ,eudev))) (arguments `(#:make-flags (let ((out (assoc-ref %outputs "out"))) - (list "INSTALL=install" + (list "CC=gcc" + "INSTALL=install" "CHECK_RUN_DIR=0" ;; TODO: tell it where to find 'sendmail' ;; (string-append "MAILCMD=" <???> "/sbin/sendmail") |