Author: ludo Date: Sat Jan 22 22:20:52 2011 New Revision: 25671 URL: https://svn.nixos.org/websvn/nix/?rev=25671&sc=1
Log: GNU Autoconf: Disable tests on Solaris. Modified: nixpkgs/trunk/pkgs/development/tools/misc/autoconf/default.nix Modified: nixpkgs/trunk/pkgs/development/tools/misc/autoconf/default.nix ============================================================================== --- nixpkgs/trunk/pkgs/development/tools/misc/autoconf/default.nix Sat Jan 22 22:20:45 2011 (r25670) +++ nixpkgs/trunk/pkgs/development/tools/misc/autoconf/default.nix Sat Jan 22 22:20:52 2011 (r25671) @@ -13,7 +13,9 @@ # Work around a known issue in Cygwin. See # http://thread.gmane.org/gmane.comp.sysutils.autoconf.bugs/6822 for # 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 # "fixed" path in generated files! _______________________________________________ nix-commits mailing list [email protected] http://mail.cs.uu.nl/mailman/listinfo/nix-commits
