build-system/gnu: Disable test suite when cross building.
* guix/build-system/gnu.scm (gnu-cross-build): Change #:tests? to default to #f.
This commit is contained in:
parent
a62b83d52f
commit
f7c3429073
|
@ -332,7 +332,7 @@ inputs."
|
|||
(make-flags ''())
|
||||
(patches ''()) (patch-flags ''("--batch" "-p1"))
|
||||
(out-of-source? #f)
|
||||
(tests? #t)
|
||||
(tests? #f) ; nothing can be done
|
||||
(test-target "check")
|
||||
(parallel-build? #t) (parallel-tests? #t)
|
||||
(patch-shebangs? #t)
|
||||
|
|
Loading…
Reference in New Issue