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.
This commit is contained in:
parent
7ba0249223
commit
195279529c
|
@ -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 _
|
||||
|
|
Loading…
Reference in New Issue