gnu: gnu-make: Don't replace 'sh' reference with 'bash'.
* gnu/packages/base.scm (gnu-make)[arguments]: Use /bin/sh instead of /bin/bash in 'set-default-shell' phase.
This commit is contained in:
parent
fa6428a19f
commit
60f3ad8c07
|
@ -365,7 +365,7 @@ functionality beyond that which is outlined in the POSIX standard.")
|
||||||
(let ((bash (assoc-ref inputs "bash")))
|
(let ((bash (assoc-ref inputs "bash")))
|
||||||
(substitute* "job.c"
|
(substitute* "job.c"
|
||||||
(("default_shell =.*$")
|
(("default_shell =.*$")
|
||||||
(format #f "default_shell = \"~a/bin/bash\";\n"
|
(format #f "default_shell = \"~a/bin/sh\";\n"
|
||||||
bash)))))))))
|
bash)))))))))
|
||||||
(synopsis "Remake files automatically")
|
(synopsis "Remake files automatically")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue