guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: gnu: ghostscript: Don't replace 'sh' reference with 'bash'.


From: Leo Famulari
Subject: 01/03: gnu: ghostscript: Don't replace 'sh' reference with 'bash'.
Date: Mon, 23 Jan 2017 21:02:31 +0000 (UTC)

lfam pushed a commit to branch core-updates
in repository guix.

commit 2f2f4265b9f21af86ca9899c9dd5de3336856a6c
Author: Leo Famulari <address@hidden>
Date:   Mon Jan 23 15:52:06 2017 -0500

    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.
---
 gnu/packages/ghostscript.scm |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/ghostscript.scm b/gnu/packages/ghostscript.scm
index 46b8c51..0c212ca 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'.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]