1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-26 19:11:46 +02:00

gnu: glibc/linux: Don't replace 'sh' reference with 'bash'.

* gnu/packages/base.scm (glibc/linux)[arguments]: Use /bin/sh instead of
/bin/bash in 'pre-configure' phase.
This commit is contained in:
Leo Famulari
2017-01-05 11:11:18 -05:00
parent 60f3ad8c07
commit 11b6687609
+1 -1
View File
@@ -622,7 +622,7 @@ store.")
;; Same for `popen'.
(substitute* "libio/iopopen.c"
(("/bin/sh")
(string-append bash "/bin/bash")))
(string-append bash "/bin/sh")))
;; Same for the shell used by the 'exec' functions for
;; scripts that lack a shebang.