1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: openssl: Don't replace 'sh' reference with 'bash'.

* gnu/packages/tls.scm (openssl)[arguments]: Use /bin/sh instead of /bin/bash in
'patch-tests' phase.
This commit is contained in:
Leo Famulari
2017-01-23 15:56:57 -05:00
parent 3dd9b765c9
commit 08a78c2fde

View File

@@ -320,7 +320,7 @@ required structures.")
(let ((bash (assoc-ref (or native-inputs inputs) "bash")))
(substitute* (find-files "test" ".*")
(("/bin/sh")
(string-append bash "/bin/bash"))
(string-append bash "/bin/sh"))
(("/bin/rm")
"rm"))
#t)))