mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: gnupg-1: Use modify-phases syntax.
* gnu/packages/gnupg.scm (gnupg-1)[arguments]: Use modify-phases syntax.
This commit is contained in:
parent
304cf4e7ee
commit
29d9075727
1 changed files with 6 additions and 6 deletions
|
@ -319,12 +319,12 @@ (define-public gnupg-1
|
|||
("readline" ,readline)
|
||||
("libgpg-error" ,libgpg-error)))
|
||||
(arguments
|
||||
`(#:phases (alist-cons-after
|
||||
'unpack 'patch-check-sh
|
||||
(lambda _
|
||||
(substitute* "checks/Makefile.in"
|
||||
(("/bin/sh") (which "bash"))))
|
||||
%standard-phases)))))
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-check-sh
|
||||
(lambda _
|
||||
(substitute* "checks/Makefile.in"
|
||||
(("/bin/sh") (which "bash"))))))))))
|
||||
|
||||
(define-public gpgme
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue