summary refs log tree commit diff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-06-24 23:26:50 +0200
committerLudovic Courtès <ludo@gnu.org>2013-06-24 23:26:50 +0200
commitf7c3429073fb0d32ccd124b7a35828c5e2d52b65 (patch)
treed9a10feff30f2de8dd2607d2f80d48f618824465
parenta62b83d52fb154e6d1073ab3620daa48e101f933 (diff)
downloadguix-f7c3429073fb0d32ccd124b7a35828c5e2d52b65.tar.gz
build-system/gnu: Disable test suite when cross building.
* guix/build-system/gnu.scm (gnu-cross-build): Change #:tests? to
  default to #f.
-rw-r--r--guix/build-system/gnu.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm
index b72239d13e..78e8bf0652 100644
--- a/guix/build-system/gnu.scm
+++ b/guix/build-system/gnu.scm
@@ -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)