mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -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=''"))
|
||||
#t))))))
|
||||
(outputs '("out" "static"))
|
||||
(inputs
|
||||
`(,@(if (%current-target-system)
|
||||
`(("bash" ,bash-minimal))
|
||||
'())))
|
||||
(synopsis "General-purpose data compression")
|
||||
(description
|
||||
"XZ Utils is free general-purpose data compression software with high
|
||||
|
|
Loading…
Reference in a new issue