diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-08-25 11:01:15 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-09-20 11:15:07 +0000 |
commit | 1bd0dcf228b01caf552a06acc75a1ec212a05d6c (patch) | |
tree | 2346264258be86739aa27c96a20c887d9a030478 /gnu/packages/gnome.scm | |
parent | b67ea49e2c918e712a3c9b215044cd9b830bb849 (diff) |
gnu: json-glib: Don't build introspection data when cross-compiling.
* gnu/packages/gnome.scm
(json-glib)[arguments]<#:configure-flags>: Set introspection=false when
cross-compiling.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 989d5e75eb..497713cddc 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -4599,7 +4599,10 @@ configuration storage systems.") ,@(if (%current-target-system) ;; If enabled, gtkdoc-scangobj will try to execute a ;; cross-compiled binary. - '("-Dgtk_doc=disabled") + '("-Dgtk_doc=disabled" + ;; Trying to build introspection data when cross-compiling + ;; causes errors during linking. + "-Dintrospection=disabled") '())) #:phases (modify-phases %standard-phases |