diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-05-15 15:06:18 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-05-15 15:06:37 +0200 |
commit | f6154eb59b3761f018887d1d53c8fee15927dd17 (patch) | |
tree | d6c44bceafc60dac49470d524b1b3f3a0346f6da /gnu | |
parent | 6189fce5297c6e6a62b42f1611db519d5947cbde (diff) | |
download | patches-f6154eb59b3761f018887d1d53c8fee15927dd17.tar patches-f6154eb59b3761f018887d1d53c8fee15927dd17.tar.gz |
gnu: m4: Disable tests when cross-compiling.
Reported by Manolis Ragkousis <manolis837@gmail.com>
at <http://lists.gnu.org/archive/html/guix-devel/2015-05/msg00161.html>.
* gnu/packages/m4.scm (m4)[arguments]: Change #:tests? condition.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/m4.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/m4.scm b/gnu/packages/m4.scm index b3b3a00fde..d1ba928768 100644 --- a/gnu/packages/m4.scm +++ b/gnu/packages/m4.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012, 2013, 2015 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -36,11 +36,10 @@ "0w0da1chh12mczxa5lnwzjk9czi3dq6gnnndbpa6w4rj76b1yklf")))) (build-system gnu-build-system) (arguments - ;; XXX: Disable tests on those platforms with know issues. - `(#:tests? ,(not (member (%current-system) - '("x86_64-darwin" - "i686-cygwin" - "i686-sunos"))) + `(;; Explicitly disable tests when cross-compiling, otherwise 'make check' + ;; proceeds and fails, unsurprisingly. + #:tests? ,(not (%current-target-system)) + #:phases (alist-cons-before 'check 'pre-check (lambda* (#:key inputs #:allow-other-keys) |