1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-14 00:50:35 +02:00

gnu: at-spi2-atk: Don't compile tests when cross-compiling.

* gnu/packages/gtk.scm
  (at-spi2-atk)[arguments]<#:configure-flags>: Set tests=false when
  cross-compiling.
This commit is contained in:
Maxime Devos
2021-08-25 16:08:23 +02:00
committed by Mathieu Othacehe
parent d1737d44e6
commit aacaa222d1

View File

@@ -856,6 +856,10 @@ is part of the GNOME accessibility project.")
(build-system meson-build-system)
(arguments
`(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
;; Compiling tests requires "libxml2" to be in 'inputs'.
,@(if (%current-target-system)
`(#:configure-flags '("-Dtests=false"))
'())
#:phases
(modify-phases %standard-phases
(replace 'check