diff options
author | Leo Famulari <leo@famulari.name> | 2017-01-23 15:52:06 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-01-23 16:02:25 -0500 |
commit | 2f2f4265b9f21af86ca9899c9dd5de3336856a6c (patch) | |
tree | b8a76cc6f44a7f7b50d06e1390474b013c9e30a6 /gnu/packages/ghostscript.scm | |
parent | 370522b888c73ad16bcd8c5709c86d9c1e91dc57 (diff) | |
download | guix-2f2f4265b9f21af86ca9899c9dd5de3336856a6c.tar.gz |
gnu: ghostscript: Don't replace 'sh' reference with 'bash'.
* gnu/packages/ghostscript.scm (ghostscript)[arguments]: Use /bin/sh instead of /bin/bash in 'patch-config-files' phase.
Diffstat (limited to 'gnu/packages/ghostscript.scm')
-rw-r--r-- | gnu/packages/ghostscript.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/ghostscript.scm b/gnu/packages/ghostscript.scm index 46b8c51299..0c212ca928 100644 --- a/gnu/packages/ghostscript.scm +++ b/gnu/packages/ghostscript.scm @@ -168,9 +168,9 @@ printing, and psresize, for adjusting page sizes.") (add-after 'configure 'patch-config-files (lambda _ (substitute* "base/all-arch.mak" - (("/bin/sh") (which "bash"))) + (("/bin/sh") (which "sh"))) (substitute* "base/unixhead.mak" - (("/bin/sh") (which "bash"))))) + (("/bin/sh") (which "sh"))))) (add-after 'configure 'remove-doc-reference (lambda _ ;; Don't retain a reference to the 'doc' output in 'gs'. |