Skip to content
Snippets Groups Projects
Unverified Commit e777d07d authored by Leo Famulari's avatar Leo Famulari
Browse files

gnu: iproute2: Update to 4.8.0.

* gnu/packages/linux.scm (iproute2): Update to 4.8.0.
[arguments]: Set Bash completion directory in #:make-flags.
parent 2c1d46b2
No related branches found
No related tags found
No related merge requests found
...@@ -900,7 +900,7 @@ (define-public iptables ...@@ -900,7 +900,7 @@ (define-public iptables
(define-public iproute (define-public iproute
(package (package
(name "iproute2") (name "iproute2")
(version "4.4.0") (version "4.8.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
...@@ -908,12 +908,14 @@ (define-public iproute ...@@ -908,12 +908,14 @@ (define-public iproute
version ".tar.xz")) version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"05351m4m0whsivlblvs3m0nz5q9v6r06ik80z27gf6ca51kw74dw")))) "12dk5hn1zlraqk2p0z8dv2xgsz0x9v8l3vcvf51fzj0v8b45j2d3"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f ; no test suite `(#:tests? #f ; no test suite
#:make-flags (let ((out (assoc-ref %outputs "out"))) #:make-flags (let ((out (assoc-ref %outputs "out")))
(list "DESTDIR=" (list "DESTDIR="
(string-append "BASH_COMPDIR=" out
"/etc/bash_completion.d")
(string-append "LIBDIR=" out "/lib") (string-append "LIBDIR=" out "/lib")
(string-append "SBINDIR=" out "/sbin") (string-append "SBINDIR=" out "/sbin")
(string-append "CONFDIR=" out "/etc") (string-append "CONFDIR=" out "/etc")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment