~ruther/guix-local

bb2f8bbc5a3db0a3e1e16f6a68422ceb270ace0b — Marius Bakke 9 years ago e688004
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.
1 files changed, 1 insertions(+), 1 deletions(-)

M gnu/packages/web.scm
M gnu/packages/web.scm => gnu/packages/web.scm +1 -1
@@ 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)