forked from mirrors/nixpkgs
Autoconf: Don't run the test suite on Cygwin.
svn path=/nixpkgs/trunk/; revision=16521
This commit is contained in:
parent
89fa345b84
commit
7dd05fc776
|
@ -12,7 +12,10 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [ m4 perl ];
|
||||
|
||||
doCheck = true;
|
||||
# Work around a known issue in Cygwin. See
|
||||
# http://thread.gmane.org/gmane.comp.sysutils.autoconf.bugs/6822 for
|
||||
# details.
|
||||
doCheck = (builtins.currentSystem != "i686-cygwin");
|
||||
|
||||
# Don't fixup "#! /bin/sh" in Autoconf, otherwise it will use the
|
||||
# "fixed" path in generated files!
|
||||
|
|
Loading…
Reference in a new issue