aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/misc/autoconf
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-07-29 08:38:26 +0000
committerLudovic Courtès <ludo@gnu.org>2009-07-29 08:38:26 +0000
commit8f6228ee5bea447b951fe562038554a5de9ff3e9 (patch)
treec4b6bcb4a81cfb45c7d92f7d624296db2fd53bcf /pkgs/development/tools/misc/autoconf
parent60027c8198530026cf5b2e8cc34a13ad0806f548 (diff)
Autoconf: Disable the test suite on {Cyg,Dar}win.
svn path=/nixpkgs/trunk/; revision=16499
Diffstat (limited to 'pkgs/development/tools/misc/autoconf')
-rw-r--r--pkgs/development/tools/misc/autoconf/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/autoconf/default.nix b/pkgs/development/tools/misc/autoconf/default.nix
index fa3f7358deb..cddd5cf128c 100644
--- a/pkgs/development/tools/misc/autoconf/default.nix
+++ b/pkgs/development/tools/misc/autoconf/default.nix
@@ -10,7 +10,13 @@ stdenv.mkDerivation rec {
buildInputs = [ m4 perl ];
- doCheck = true;
+ # FIXME: The test suite fails on Darwin (see
+ # http://thread.gmane.org/gmane.comp.sysutils.autoconf.bugs/6813) and on
+ # Cygwin (see http://hydra.nixos.org/build/53814; yet to be reported
+ # upstream).
+ doCheck =
+ (builtins.currentSystem != "i686-darwin")
+ && (builtins.currentSystem != "i686-cygwin");
# Don't fixup "#! /bin/sh" in Autoconf, otherwise it will use the
# "fixed" path in generated files!