mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
pcre: disable tests for freeBSDs, as we're running out of stack
This commit is contained in:
parent
e855ac5070
commit
59a5f6307d
|
@ -18,7 +18,9 @@ stdenv.mkDerivation rec {
|
|||
${if !cplusplusSupport then "--disable-cpp" else ""}
|
||||
'' + stdenv.lib.optionalString stdenv.isDarwin "CXXFLAGS=-O0";
|
||||
|
||||
doCheck = !stdenv.isCygwin; # XXX: test failure on Cygwin
|
||||
doCheck = with stdenv; !(isCygwin || isFreeBSD);
|
||||
# XXX: test failure on Cygwin
|
||||
# we are running out of stack on both freeBSDs on Hydra
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.pcre.org/";
|
||||
|
|
Loading…
Reference in a new issue