mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: ode: Properly disable tests when cross-compiling.
* gnu/packages/game-development.scm (ode): Properly disable tests when using (%current-target-system).
This commit is contained in:
parent
e7c938b2bf
commit
07a7cccbac
1 changed files with 3 additions and 3 deletions
|
@ -1999,9 +1999,9 @@ (define-public ode
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; Tests fail on all systems but x86_64.
|
;; Tests fail on all systems but x86_64.
|
||||||
`(#:tests? ,(string=? "x86_64-linux"
|
`(#:tests? ,(string-prefix? "x86_64-"
|
||||||
(or (%current-target-system)
|
(or (%current-target-system)
|
||||||
(%current-system)))
|
(%current-system)))
|
||||||
#:configure-flags '("-DODE_WITH_LIBCCD_SYSTEM=ON")
|
#:configure-flags '("-DODE_WITH_LIBCCD_SYSTEM=ON")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
|
Loading…
Reference in a new issue