From a68773a3ea26531bcdaebb12aeb1143a4d3c1754 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 2 Feb 2009 15:34:59 +0000 Subject: [PATCH] * GNU m4: `make check' fails on Darwin: === Checking ./219.improved_f Checking ./stackovf.test Stack soft limit set to 300K Failure - m4 aborted unexpectedly Output from m4: m4: internal error detected; please report this bug to : Bus error Skipped checks were: ./116.changeword ./117.changeword ./118.changeword ./119.changeword ./120.changeword ./121.changeword Failed checks were: ./stackovf.test make[2]: *** [check] Error 1 make[1]: *** [check-recursive] Error 1 === So disable the check on Darwin for now. svn path=/nixpkgs/branches/stdenv-updates/; revision=13958 --- pkgs/development/tools/misc/gnum4/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/gnum4/default.nix b/pkgs/development/tools/misc/gnum4/default.nix index 43cb96d8987..143b9e1e858 100644 --- a/pkgs/development/tools/misc/gnum4/default.nix +++ b/pkgs/development/tools/misc/gnum4/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "18qvi12843kvqkpcmrjxz1929s833q5d0jzm8hc965j663g1fll5"; }; - doCheck = true; + doCheck = !stdenv ? isDarwin; meta = { homepage = http://www.gnu.org/software/m4/;