gnu: guile-zlib: Fix cross-compilation.
* gnu/packages/guile.scm (guile-zlib)[native-inputs]: Add "guile" when cross-compiling.master
parent
4c0c65acfa
commit
65777dce0f
|
@ -803,7 +803,10 @@ manipulate repositories of the Git version control system.")
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)
|
||||||
|
,@(if (%current-target-system)
|
||||||
|
`(("guile" ,guile-3.0)) ;for 'guild compile' and 'guile-3.0.pc'
|
||||||
|
'())))
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile" ,guile-3.0)
|
`(("guile" ,guile-3.0)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
|
|
Reference in New Issue