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
1 changed files with 1 additions and 1 deletions

View File

@ -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)