[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: libtool-2.4.4: Disable tests on MIPS.
From: |
Ludovic Courtès |
Subject: |
01/03: gnu: libtool-2.4.4: Disable tests on MIPS. |
Date: |
Tue, 06 Jan 2015 14:07:39 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit ffc200d7e08862355c7381f45ee7dd772c4d8e83
Author: Ludovic Courtès <address@hidden>
Date: Tue Jan 6 14:52:56 2015 +0100
gnu: libtool-2.4.4: Disable tests on MIPS.
* gnu/packages/autotools.scm (libtool-2.4.4)[arguments]: New field.
---
gnu/packages/autotools.scm | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm
index 3d5c854..e45f53d 100644
--- a/gnu/packages/autotools.scm
+++ b/gnu/packages/autotools.scm
@@ -307,4 +307,13 @@ complexity of working with shared libraries across
platforms.")
(native-inputs `(("automake" ,automake) ;some tests rely on 'aclocal'
("autoconf" ,(autoconf-wrapper)) ;others on 'autom4te'
- ,@(package-native-inputs libtool)))))
+ ,@(package-native-inputs libtool)))
+
+ (arguments
+ ;; XXX: There are test failures on mips64el-linux starting from 2.4.4:
+ ;; <http://hydra.gnu.org/build/181662>.
+ (if (string-prefix? "mips64el"
+ (or (%current-target-system) (%current-system)))
+ `(#:tests? #f
+ ,@(package-arguments libtool))
+ (package-arguments libtool)))))