3
0
Fork 0
forked from mirrors/nixpkgs

Revert "automake: Disabling tests on mips." Causes infinite recursion on all other platforms.

This reverts commit eadcd7dab6.
This commit is contained in:
Rob Vermaas 2012-08-15 10:13:02 +02:00
parent eadcd7dab6
commit 61817876fc
2 changed files with 2 additions and 4 deletions

View file

@ -19,8 +19,7 @@ stdenv.mkDerivation rec {
buildInputs = [perl autoconf makeWrapper];
# Bug in a test in automake. Upstream git already fixed it removing the test.
doCheck = if stdenv.isMips then false else doCheck;
inherit doCheck;
# Disable indented log output from Make, otherwise "make.test" will
# fail.

View file

@ -23,8 +23,7 @@ stdenv.mkDerivation rec {
sed -i -e 's|t/aclocal7.sh||' Makefile.in
'';
# Bug in a test in automake. Upstream git already fixed it removing the test.
doCheck = if stdenv.isMips then false else doCheck;
inherit doCheck;
# The test suite can run in parallel.
enableParallelBuilding = true;