me
/
guix
Archived
1
0
Fork 0

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.
Christopher Baines 2022-10-28 13:17:38 +01:00
parent a0c5f19dc6
commit 067deee14f
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 4 additions and 0 deletions

View File

@ -394,6 +394,10 @@ file; as a result, it is often used in conjunction with \"tar\", resulting in
,@(if (%current-target-system)
'(#:tests? #f)
'())))
(inputs
`(,@(if (%current-target-system)
`(("bash" ,bash-minimal))
'())))
(outputs '("out" "static"))
(synopsis "High-quality data compression program")
(description