lfam pushed a commit to branch master
in repository guix.

commit 7ba024922377c60d259725db79840f976979b790
Author: Leo Famulari <[email protected]>
Date:   Mon Jan 23 16:19:01 2017 -0500

    gnu: signing-party: Don't replace 'sh' reference with 'bash'.
    
    * gnu/packages/gnupg.scm (signing-party)[arguments]: Use (which "sh") 
instead of
    (which "bash") in 'configure' phase.
---
 gnu/packages/gnupg.scm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index 4818d7b..b19d764 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -573,7 +573,7 @@ PGP keysigning parties.")
               (substitute* "keyanalyze/Makefile"
                 (("./configure") (string-append "./configure --prefix=" out)))
               (substitute* "keyanalyze/pgpring/configure"
-                (("/bin/sh") (which "bash")))
+                (("/bin/sh") (which "sh")))
               (substitute* "gpgwrap/Makefile"
                 (("\\} clean")
                  (string-append "} clean\ninstall:\n\tinstall -D bin/gpgwrap "

Reply via email to