mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-09 12:49:30 +01:00
gnu: sudo: Update to 1.9.14p1.
* gnu/packages/admin.scm (sudo): Update to 1.9.14p1. [arguments]: Use a different filthy hack to quote _PATH_MV.
This commit is contained in:
parent
460a555ee7
commit
aff442508b
1 changed files with 4 additions and 4 deletions
|
@ -1958,7 +1958,7 @@ system administrator.")
|
||||||
(define-public sudo
|
(define-public sudo
|
||||||
(package
|
(package
|
||||||
(name "sudo")
|
(name "sudo")
|
||||||
(version "1.9.13p2")
|
(version "1.9.14p1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
|
@ -1968,7 +1968,7 @@ system administrator.")
|
||||||
version ".tar.gz")))
|
version ".tar.gz")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0kapjhgyzaqk2nfzzz04ss9x6cy61s79afd3vhgkn0y1wkyh886z"))
|
"1bwg2bn1sbc6l2gx2r9vfqyf8dyvgp7nad0wj3p5gn095vpza6z9"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
|
@ -1987,9 +1987,9 @@ system administrator.")
|
||||||
|
|
||||||
;; 'visudo.c' expects _PATH_MV to be defined, but glibc doesn't
|
;; 'visudo.c' expects _PATH_MV to be defined, but glibc doesn't
|
||||||
;; provide it.
|
;; provide it.
|
||||||
(string-append "CPPFLAGS=-D_PATH_MV='\""
|
(string-append "CPPFLAGS=-D_PATH_MV=\\\""
|
||||||
(assoc-ref %build-inputs "coreutils")
|
(assoc-ref %build-inputs "coreutils")
|
||||||
"/bin/mv\"'"))
|
"/bin/mv\\\""))
|
||||||
|
|
||||||
;; Avoid non-determinism; see <http://bugs.gnu.org/21918>.
|
;; Avoid non-determinism; see <http://bugs.gnu.org/21918>.
|
||||||
#:parallel-build? #f
|
#:parallel-build? #f
|
||||||
|
|
Loading…
Add table
Reference in a new issue