guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: gnupg-1: Use modify-phases syntax.


From: Leo Famulari
Subject: 01/01: gnu: gnupg-1: Use modify-phases syntax.
Date: Sun, 14 Aug 2016 00:49:38 +0000 (UTC)

lfam pushed a commit to branch master
in repository guix.

commit 29d907572771d0d3d6418f5bf1d50aab931b4288
Author: Leo Famulari <address@hidden>
Date:   Mon Jul 18 14:48:55 2016 -0400

    gnu: gnupg-1: Use modify-phases syntax.
    
    * gnu/packages/gnupg.scm (gnupg-1)[arguments]: Use modify-phases syntax.
---
 gnu/packages/gnupg.scm |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index 9bc7b65..c411973 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -319,12 +319,12 @@ libskba (working with X.509 certificates and CMS data).")
        ("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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]