mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: bzip2: Fix script interpreters when cross-compiling.
Add bash-minimal as an input fixes the interpreters for various scripts (like bzdiff and bzgrep) when cross-compiling. * gnu/packages/compression.scm (bzip2)[inputs]: Add bash-minimal when cross compiling.
This commit is contained in:
parent
a0c5f19dc6
commit
067deee14f
1 changed files with 4 additions and 0 deletions
|
@ -394,6 +394,10 @@ file; as a result, it is often used in conjunction with \"tar\", resulting in
|
||||||
,@(if (%current-target-system)
|
,@(if (%current-target-system)
|
||||||
'(#:tests? #f)
|
'(#:tests? #f)
|
||||||
'())))
|
'())))
|
||||||
|
(inputs
|
||||||
|
`(,@(if (%current-target-system)
|
||||||
|
`(("bash" ,bash-minimal))
|
||||||
|
'())))
|
||||||
(outputs '("out" "static"))
|
(outputs '("out" "static"))
|
||||||
(synopsis "High-quality data compression program")
|
(synopsis "High-quality data compression program")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue