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:
Ludovic Courtès 2013-06-24 23:26:50 +02:00
parent a62b83d52f
commit f7c3429073

View file

@ -332,7 +332,7 @@ (define* (gnu-cross-build store name target source inputs native-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)