~ruther/guix-local

ffc200d7e08862355c7381f45ee7dd772c4d8e83 — Ludovic Courtès 11 years ago 9331ba5
gnu: libtool-2.4.4: Disable tests on MIPS.

* gnu/packages/autotools.scm (libtool-2.4.4)[arguments]: New field.
1 files changed, 10 insertions(+), 1 deletions(-)

M gnu/packages/autotools.scm
M gnu/packages/autotools.scm => gnu/packages/autotools.scm +10 -1
@@ 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)))))