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:
parent
16040297a7
commit
7f7c196912
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue