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.
This commit is contained in:
Leo Famulari 2017-01-23 15:52:06 -05:00
parent 370522b888
commit 2f2f4265b9
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -168,9 +168,9 @@ (define-public ghostscript
(add-after 'configure 'patch-config-files (add-after 'configure 'patch-config-files
(lambda _ (lambda _
(substitute* "base/all-arch.mak" (substitute* "base/all-arch.mak"
(("/bin/sh") (which "bash"))) (("/bin/sh") (which "sh")))
(substitute* "base/unixhead.mak" (substitute* "base/unixhead.mak"
(("/bin/sh") (which "bash"))))) (("/bin/sh") (which "sh")))))
(add-after 'configure 'remove-doc-reference (add-after 'configure 'remove-doc-reference
(lambda _ (lambda _
;; Don't retain a reference to the 'doc' output in 'gs'. ;; Don't retain a reference to the 'doc' output in 'gs'.