diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-06-24 23:26:50 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-06-24 23:26:50 +0200 |
commit | f7c3429073fb0d32ccd124b7a35828c5e2d52b65 (patch) | |
tree | d9a10feff30f2de8dd2607d2f80d48f618824465 | |
parent | a62b83d52fb154e6d1073ab3620daa48e101f933 (diff) | |
download | guix-f7c3429073fb0d32ccd124b7a35828c5e2d52b65.tar guix-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.scm | 2 |
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) |