me
/
guix
Archived
1
0
Fork 0

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.
master
Leo Famulari 2017-01-23 15:56:57 -05:00
parent 3dd9b765c9
commit 08a78c2fde
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 1 additions and 1 deletions

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)))