* 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
This commit is contained in:
Eelco Dolstra 2009-02-02 15:34:59 +00:00
parent 1dee2d3de0
commit a68773a3ea
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "18qvi12843kvqkpcmrjxz1929s833q5d0jzm8hc965j663g1fll5";
};
doCheck = true;
doCheck = !stdenv ? isDarwin;
meta = {
homepage = http://www.gnu.org/software/m4/;