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.
This commit is contained in:
Marius Bakke 2017-01-23 17:48:47 +01:00
parent e6880040b4
commit bb2f8bbc5a
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -146,7 +146,7 @@ (define-public nginx
(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)