automake: disabling automake tests in mips (2nd attempt)

As explained in my previous attempt:
  There is a test that fails on mips, and that breaks the nix build.
  The text does not exist anymore in automake upstream git, so the next
  version may not need this mips-specific disabling.
This commit is contained in:
Lluís Batlle i Rossell 2012-08-15 10:28:31 +02:00
parent 61817876fc
commit 443d65df34

View File

@ -2890,7 +2890,7 @@ let
automake110x = callPackage ../development/tools/misc/automake/automake-1.10.x.nix { };
automake111x = callPackage ../development/tools/misc/automake/automake-1.11.x.nix {
doCheck = !stdenv.isArm && !stdenv.isCygwin
doCheck = !stdenv.isArm && !stdenv.isCygwin && !stdenv.isMips
# Some of the parallel tests seem to hang on `i386-pc-solaris2.11'.
&& stdenv.system != "i686-solaris"
@ -2899,7 +2899,7 @@ let
};
automake112x = callPackage ../development/tools/misc/automake/automake-1.12.x.nix {
doCheck = !stdenv.isArm && !stdenv.isCygwin
doCheck = !stdenv.isArm && !stdenv.isCygwin && !stdenv.isMips
# Some of the parallel tests seem to hang on `i386-pc-solaris2.11'.
&& stdenv.system != "i686-solaris";
};