Limiting the number of fds on the sqlite full build, as it's required by some tests.
svn path=/nixpkgs/trunk/; revision=33792
This commit is contained in:
parent
2e753bc4cf
commit
e612f476c4
@ -21,6 +21,9 @@ stdenv.mkDerivation {
|
|||||||
configureFlags = "--enable-threadsafe --enable-tempstore";
|
configureFlags = "--enable-threadsafe --enable-tempstore";
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
${ # The tests oserror-1.1.{1,2,3} need the fd limit < 2000
|
||||||
|
# and on the builders in NixOS we have 4096 now.
|
||||||
|
if stdenv.isLinux then "ulimit -n 1024" else ""}
|
||||||
export TCLLIBDIR=$out/${tcl.libdir}
|
export TCLLIBDIR=$out/${tcl.libdir}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user