lfam pushed a commit to branch master
in repository guix.

commit 344498c7362b60477b6e8a098201356ce6b57d83
Author: Leo Famulari <[email protected]>
Date:   Mon Jan 23 16:25:02 2017 -0500

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

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 0c88059..5b3ed74 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -825,7 +825,7 @@ connect with friends and family without anyone else 
listening in.")
                (("mkdir -p \\$\\{DESTDIR\\}/usr") "")
                (("/usr/local") "")
                (("/usr") "")
-               (("#!/bin/sh") (string-append "#!" (which "bash")))
+               (("#!/bin/sh") (string-append "#!" (which "sh")))
                (("python2") (which "python"))
                (("/opt/openssl-compat-bitcoin/lib/")
                 (string-append (assoc-ref inputs "openssl") "/lib/")))

Reply via email to