summary refs log tree commit diff
path: root/pkgs/development/libraries/libffi
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-09-14 21:18:55 +0200
committerVladimír Čunát <vcunat@gmail.com>2013-09-14 21:18:55 +0200
commit7f7c1969129df60149e29c569c836a7db04e8355 (patch)
tree019fc2412662e5f6d5b0324bbfc480889b4f6d0a /pkgs/development/libraries/libffi
parent16040297a7603f00ddd5858abad820988bf627b5 (diff)
downloadnixpkgs-7f7c1969129df60149e29c569c836a7db04e8355.tar
nixpkgs-7f7c1969129df60149e29c569c836a7db04e8355.tar.gz
nixpkgs-7f7c1969129df60149e29c569c836a7db04e8355.tar.bz2
nixpkgs-7f7c1969129df60149e29c569c836a7db04e8355.tar.lz
nixpkgs-7f7c1969129df60149e29c569c836a7db04e8355.tar.xz
nixpkgs-7f7c1969129df60149e29c569c836a7db04e8355.tar.zst
nixpkgs-7f7c1969129df60149e29c569c836a7db04e8355.zip
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.
Diffstat (limited to 'pkgs/development/libraries/libffi')
-rw-r--r--pkgs/development/libraries/libffi/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libffi/default.nix b/pkgs/development/libraries/libffi/default.nix
index 807fe54c27e..7cd8972672c 100644
--- a/pkgs/development/libraries/libffi/default.nix
+++ b/pkgs/development/libraries/libffi/default.nix
@@ -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.