gnu: graphene: Don't build introspection data when cross-compiling.
* gnu/packages/gtk.scm (graphene)[arguments]<#:configure-flags>: Set introspection=false when cross-compiling.master
parent
0d7888acf0
commit
9e6b25505a
|
@ -2291,7 +2291,11 @@ Parcellite and adds bugfixes and features.")
|
||||||
`(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
|
`(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list
|
(list
|
||||||
"-Dinstalled_tests=false")))
|
"-Dinstalled_tests=false"
|
||||||
|
,@(if (%current-target-system)
|
||||||
|
;; Introspection requires running binaries for 'host' on 'build'.
|
||||||
|
'("-Dintrospection=false")
|
||||||
|
'()))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("git" ,git-minimal)
|
`(("git" ,git-minimal)
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
|
|
Reference in New Issue