mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: gawk: Refer to the target Bash in io.c.
* gnu/packages/gawk.scm (gawk): Add Bash as an input when (%current-target-system) is true.
This commit is contained in:
parent
8caa6152d0
commit
63c0c19a64
1 changed files with 12 additions and 9 deletions
|
@ -18,6 +18,7 @@
|
|||
|
||||
(define-module (gnu packages gawk)
|
||||
#:use-module (guix licenses)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages libsigsegv)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
|
@ -45,18 +46,20 @@ (define-public gawk
|
|||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
;; Refer to the right shell.
|
||||
;; FIXME: Remove `else' arm upon core-updates.
|
||||
,(if (%current-target-system)
|
||||
'(let ((sh (which "sh")))
|
||||
(substitute* "io.c"
|
||||
(("/bin/sh") sh)))
|
||||
'(let ((bash (assoc-ref inputs "bash")))
|
||||
(substitute* "io.c"
|
||||
(("/bin/sh")
|
||||
(string-append bash "/bin/bash"))))))
|
||||
(let ((bash (assoc-ref inputs "bash")))
|
||||
(substitute* "io.c"
|
||||
(("/bin/sh")
|
||||
(string-append bash "/bin/bash")))))
|
||||
,(if (%current-target-system)
|
||||
'%standard-cross-phases
|
||||
'%standard-phases))))
|
||||
(inputs `(("libsigsegv" ,libsigsegv)))
|
||||
(inputs `(("libsigsegv" ,libsigsegv)
|
||||
|
||||
;; TODO: On next core-updates, make Bash input unconditional.
|
||||
,@(if (%current-target-system)
|
||||
`(("bash" ,bash))
|
||||
'())))
|
||||
|
||||
(home-page "http://www.gnu.org/software/gawk/")
|
||||
(synopsis "A text scanning and processing language")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue