guix-commits
[Top][All Lists]
Advanced

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

07/11: gnu: sendmail: Don't replace 'sh' reference with 'bash'.


From: Leo Famulari
Subject: 07/11: gnu: sendmail: Don't replace 'sh' reference with 'bash'.
Date: Mon, 23 Jan 2017 22:25:21 +0000 (UTC)

lfam pushed a commit to branch master
in repository guix.

commit 195279529c9116393b4adadf85d8922095e00486
Author: Leo Famulari <address@hidden>
Date:   Mon Jan 23 16:23:12 2017 -0500

    gnu: sendmail: Don't replace 'sh' reference with 'bash'.
    
    * gnu/packages/mail.scm (sendmail)[arguments]: Use (which "sh") instead of
    (which "bash") in 'replace-/bin/sh' phase.
---
 gnu/packages/mail.scm |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index bcb6473..2318ae9 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -1557,10 +1557,10 @@ powerful user customization features.")
                         "contrib/mmuegel" "devtools/bin/configure.sh")
                   (find-files "." ".*\\.m4")
                   (find-files "." ".*\\.cf"))
-               (("/bin/sh") (which "bash")))
+               (("/bin/sh") (which "sh")))
 
              (substitute* "devtools/bin/Build"
-               (("SHELL=/bin/sh") (string-append "SHELL=" (which "bash"))))
+               (("SHELL=/bin/sh") (string-append "SHELL=" (which "sh"))))
              #t))
          (replace 'configure
            (lambda _



reply via email to

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