~ruther/guix-local

60f3ad8c073bba0a4672752f4b73ddd5ebd6b011 — Leo Famulari 9 years ago fa6428a
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