GNU Autoconf: Disable tests on Solaris.

svn path=/nixpkgs/trunk/; revision=25671
This commit is contained in:
Ludovic Courtès 2011-01-22 22:20:52 +00:00
parent 3c7abf32f1
commit e314e1f2de
1 changed files with 3 additions and 1 deletions

View File

@ -13,7 +13,9 @@ stdenv.mkDerivation rec {
# Work around a known issue in Cygwin. See # Work around a known issue in Cygwin. See
# http://thread.gmane.org/gmane.comp.sysutils.autoconf.bugs/6822 for # http://thread.gmane.org/gmane.comp.sysutils.autoconf.bugs/6822 for
# details. # details.
doCheck = (stdenv.system != "i686-cygwin"); # There are many test failures on `i386-pc-solaris2.11'.
doCheck = (stdenv.system != "i686-cygwin"
&& stdenv.system != "i386-sunos");
# Don't fixup "#! /bin/sh" in Autoconf, otherwise it will use the # Don't fixup "#! /bin/sh" in Autoconf, otherwise it will use the
# "fixed" path in generated files! # "fixed" path in generated files!