[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: nginx: Don't replace 'sh' reference with 'bash'.
From: |
Marius Bakke |
Subject: |
01/01: gnu: nginx: Don't replace 'sh' reference with 'bash'. |
Date: |
Mon, 23 Jan 2017 17:03:21 +0000 (UTC) |
mbakke pushed a commit to branch master
in repository guix.
commit bb2f8bbc5a3db0a3e1e16f6a68422ceb270ace0b
Author: Marius Bakke <address@hidden>
Date: Mon Jan 23 17:48:47 2017 +0100
gnu: nginx: Don't replace 'sh' reference with 'bash'.
* gnu/packages/web.scm (nginx)[arguments]: Substitute /bin/sh with "which
sh"
instead of "which bash" in 'patch-/bin/sh' phase.
---
gnu/packages/web.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index c62acbd..c8f8c63 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -146,7 +146,7 @@ and its related documentation.")
(add-before 'configure 'patch-/bin/sh
(lambda _
(substitute* "auto/feature"
- (("/bin/sh") (which "bash")))
+ (("/bin/sh") (which "sh")))
#t))
(replace 'configure
(lambda* (#:key outputs #:allow-other-keys)