mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -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)
|
||||
(arguments
|
||||
;; Tests fail on all systems but x86_64.
|
||||
`(#:tests? ,(string=? "x86_64-linux"
|
||||
(or (%current-target-system)
|
||||
(%current-system)))
|
||||
`(#:tests? ,(string-prefix? "x86_64-"
|
||||
(or (%current-target-system)
|
||||
(%current-system)))
|
||||
#:configure-flags '("-DODE_WITH_LIBCCD_SYSTEM=ON")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
|
Loading…
Reference in a new issue