From 7dd05fc77657b86b79fed1dd53160ae7fdfc8e77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 30 Jul 2009 15:26:30 +0000 Subject: [PATCH] Autoconf: Don't run the test suite on Cygwin. svn path=/nixpkgs/trunk/; revision=16521 --- pkgs/development/tools/misc/autoconf/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/autoconf/default.nix b/pkgs/development/tools/misc/autoconf/default.nix index 2203062c438..b7850565d5c 100644 --- a/pkgs/development/tools/misc/autoconf/default.nix +++ b/pkgs/development/tools/misc/autoconf/default.nix @@ -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!