gnu: guile-lzlib: Fix cross-compilation.
* gnu/packages/guile.scm (guile-lzlib)[native-inputs]: Add "guile" when cross-compiling.master
parent
65777dce0f
commit
0c50d7231b
|
@ -839,7 +839,10 @@ Guile's foreign function interface.")
|
||||||
(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)
|
||||||
("lzlib" ,lzlib)))
|
("lzlib" ,lzlib)))
|
||||||
|
|
Reference in New Issue