GNU Autoconf: Disable tests on Solaris.
svn path=/nixpkgs/trunk/; revision=25671
This commit is contained in:
parent
3c7abf32f1
commit
e314e1f2de
|
@ -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!
|
||||||
|
|
Loading…
Reference in New Issue