diff options
author | Leo Famulari <leo@famulari.name> | 2017-01-05 11:11:18 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-01-06 17:16:03 -0500 |
commit | 11b6687609f24e3f238314c4b40a54341f96ab3c (patch) | |
tree | 83b0719c11689ba3e444efe207b3226dc1407199 /gnu/packages/base.scm | |
parent | 60f3ad8c073bba0a4672752f4b73ddd5ebd6b011 (diff) | |
download | guix-11b6687609f24e3f238314c4b40a54341f96ab3c.tar guix-11b6687609f24e3f238314c4b40a54341f96ab3c.tar.gz |
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.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 1483cd3421..3457c79bbc 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -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. |