From 8f6228ee5bea447b951fe562038554a5de9ff3e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 29 Jul 2009 08:38:26 +0000 Subject: [PATCH] Autoconf: Disable the test suite on {Cyg,Dar}win. svn path=/nixpkgs/trunk/; revision=16499 --- pkgs/development/tools/misc/autoconf/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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!