1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

GNU Automake 1.11.x: Disable tests on Solaris.

svn path=/nixpkgs/trunk/; revision=25677
This commit is contained in:
Ludovic Courtès 2011-01-23 22:48:08 +00:00
parent 5f3455dde5
commit a246bebc14

View file

@ -2468,7 +2468,9 @@ let
automake110x = callPackage ../development/tools/misc/automake/automake-1.10.x.nix { };
automake111x = callPackage ../development/tools/misc/automake/automake-1.11.x.nix {
doCheck = if stdenv.isArm then false else true;
doCheck = !stdenv.isArm
# Some of the parallel tests seem to hang on `i386-pc-solaris2.11'.
&& stdenv.system != "i386-sunos";
};
avrdude = callPackage ../development/tools/misc/avrdude { };