1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

libffi: disable tests on FreeBSD as well

There are strange build failures of expect. Ikwildrpepper says the bash
eats all CPU, but the build is stuck.
This commit is contained in:
Vladimír Čunát 2013-09-14 21:18:55 +02:00
parent 16040297a7
commit 7f7c196912

View file

@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
configureFlags = [ "--with-gcc-arch=generic" ]; # no detection of -march= or -mtune=
doCheck = !stdenv.isDarwin; # until we solve dejagnu problems on darwin
doCheck = stdenv.isLinux; # until we solve dejagnu problems on darwin and expect on BSD
dontStrip = stdenv ? cross; # Don't run the native `strip' when cross-compiling.