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.
1 files changed, 1 insertions(+), 1 deletions(-) M gnu/packages/base.scm
M gnu/packages/base.scm => gnu/packages/base.scm +1 -1
@@ 365,7 365,7 @@ functionality beyond that which is outlined in the POSIX standard.") (let ((bash (assoc-ref inputs "bash"))) (substitute* "job.c" (("default_shell =.*$") (format #f "default_shell = \"~a/bin/bash\";\n" (format #f "default_shell = \"~a/bin/sh\";\n" bash))))))))) (synopsis "Remake files automatically") (description