mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: xz: Fix script interpreters when cross-compiling.
Add bash-minimal as an input fixes the interpreters for various scripts (like xzgrep and xzless) when cross-compiling. * gnu/packages/compression.scm (xz)[inputs]: Add bash-minimal when cross compiling.
This commit is contained in:
parent
01cfc22700
commit
a0c5f19dc6
1 changed files with 4 additions and 0 deletions
|
@ -529,6 +529,10 @@ (define-public xz
|
||||||
(("^old_library='liblzma.a'") "old_library=''"))
|
(("^old_library='liblzma.a'") "old_library=''"))
|
||||||
#t))))))
|
#t))))))
|
||||||
(outputs '("out" "static"))
|
(outputs '("out" "static"))
|
||||||
|
(inputs
|
||||||
|
`(,@(if (%current-target-system)
|
||||||
|
`(("bash" ,bash-minimal))
|
||||||
|
'())))
|
||||||
(synopsis "General-purpose data compression")
|
(synopsis "General-purpose data compression")
|
||||||
(description
|
(description
|
||||||
"XZ Utils is free general-purpose data compression software with high
|
"XZ Utils is free general-purpose data compression software with high
|
||||||
|
|
Loading…
Reference in a new issue