From ffc200d7e08862355c7381f45ee7dd772c4d8e83 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 6 Jan 2015 14:52:56 +0100 Subject: 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 file changed, 10 insertions(+), 1 deletion(-) (limited to 'gnu/packages/autotools.scm') diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm index 3d5c85463f..e45f53d927 100644 --- a/gnu/packages/autotools.scm +++ b/gnu/packages/autotools.scm @@ -307,4 +307,13 @@ (define-public libtool-2.4.4 (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: + ;; . + (if (string-prefix? "mips64el" + (or (%current-target-system) (%current-system))) + `(#:tests? #f + ,@(package-arguments libtool)) + (package-arguments libtool))))) -- cgit v1.2.3