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:
parent
3dd9b765c9
commit
08a78c2fde
|
@ -320,7 +320,7 @@ required structures.")
|
||||||
(let ((bash (assoc-ref (or native-inputs inputs) "bash")))
|
(let ((bash (assoc-ref (or native-inputs inputs) "bash")))
|
||||||
(substitute* (find-files "test" ".*")
|
(substitute* (find-files "test" ".*")
|
||||||
(("/bin/sh")
|
(("/bin/sh")
|
||||||
(string-append bash "/bin/bash"))
|
(string-append bash "/bin/sh"))
|
||||||
(("/bin/rm")
|
(("/bin/rm")
|
||||||
"rm"))
|
"rm"))
|
||||||
#t)))
|
#t)))
|
||||||
|
|
Loading…
Reference in New Issue