mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: ghc-6.6: Patch more references to /bin/sh.
* gnu/packages/haskell.scm (ghc-6.6)[arguments]: Patch references to /bin/sh in Cabal and process internals.
This commit is contained in:
parent
eaaba9d62c
commit
26e1f3ec9a
1 changed files with 5 additions and 2 deletions
|
@ -538,9 +538,12 @@ (define-public ghc-6.6
|
|||
(("^SHELL.*=.*/bin/sh") (string-append "SHELL = " bash)))
|
||||
(substitute* "aclocal.m4"
|
||||
(("SHELL=/bin/sh") (string-append "SHELL=" bash)))
|
||||
(substitute* '"compiler/Makefile"
|
||||
(substitute* "compiler/Makefile"
|
||||
(("#!/bin/sh") (string-append "#!" bash)))
|
||||
(substitute* "libraries/base/cbits/execvpe.c"
|
||||
(substitute* '("libraries/base/cbits/execvpe.c"
|
||||
"libraries/Cabal/Distribution/attic"
|
||||
"libraries/Cabal/Distribution/Simple/Register.hs"
|
||||
"libraries/base/System/Process/Internals.hs")
|
||||
(("/bin/sh") bash)
|
||||
(("\"sh\"") (string-append "\"" bash "\"")))
|
||||
|
||||
|
|
Loading…
Reference in a new issue