about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/gnum4
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-02-02 15:34:59 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-02-02 15:34:59 +0000
commita68773a3ea26531bcdaebb12aeb1143a4d3c1754 (patch)
tree63490583abd496732863cfa775a39bd6510244b8 /pkgs/development/tools/misc/gnum4
parent1dee2d3de0baf12ac4dd700c95c6a4da54bfaaf6 (diff)
downloadnixlib-a68773a3ea26531bcdaebb12aeb1143a4d3c1754.tar
nixlib-a68773a3ea26531bcdaebb12aeb1143a4d3c1754.tar.gz
nixlib-a68773a3ea26531bcdaebb12aeb1143a4d3c1754.tar.bz2
nixlib-a68773a3ea26531bcdaebb12aeb1143a4d3c1754.tar.lz
nixlib-a68773a3ea26531bcdaebb12aeb1143a4d3c1754.tar.xz
nixlib-a68773a3ea26531bcdaebb12aeb1143a4d3c1754.tar.zst
nixlib-a68773a3ea26531bcdaebb12aeb1143a4d3c1754.zip
* 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 <bug-m4@gnu.org>: 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
Diffstat (limited to 'pkgs/development/tools/misc/gnum4')
-rw-r--r--pkgs/development/tools/misc/gnum4/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/gnum4/default.nix b/pkgs/development/tools/misc/gnum4/default.nix
index 43cb96d8987c..143b9e1e858c 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/;