octave: disabling parallel building

The error http://hydra.nixos.org/build/2748254/log/tail-reload
makes me think there are concurrency problems in the octave build.
In my computer it builds fine.
This commit is contained in:
Lluís Batlle i Rossell 2012-07-02 21:27:18 +02:00
parent 95072d1485
commit 40b91ced40

View File

@ -15,7 +15,9 @@ stdenv.mkDerivation rec {
doCheck = true;
enableParallelBuilding = true;
/* The build failed with a missing libranlib.la in hydra,
but worked on my computer. I think they have concurrency problems */
enableParallelBuilding = false;
configureFlags = [ "--enable-readline" "--enable-dl" ];