gnu: gnupg@2.0: Fix typo.
authorEfraim Flashner <efraim@flashner.co.il>
Sun, 24 Jul 2016 19:02:18 +0000 (22:02 +0300)
committerEfraim Flashner <efraim@flashner.co.il>
Sun, 24 Jul 2016 19:02:46 +0000 (22:02 +0300)
* gnu/packages/gnupg.scm (gnupg@2.0)[arguments]: Fix typo that prevented
gnupg from building.

This is a follow up to 6b547d22952fb30c4419d4f81545353907ab398d.

gnu/packages/gnupg.scm

index 2391632..ddb9bf1 100644 (file)
@@ -279,11 +279,12 @@ libskba (working with X.509 certificates and CMS data).")
        ("readline" ,readline)))
    (arguments
     `(#:phases
-      (modify-phases %standard-phase
+      (modify-phases %standard-phases
         (add-before 'configure 'patch-config-files
           (lambda _
             (substitute* "tests/openpgp/Makefile.in"
-              (("/bin/sh") (which "bash"))))))))))
+              (("/bin/sh") (which "bash")))
+            #t)))))))
 
 (define-public gnupg-1
   (package (inherit gnupg)