Fixing ghdl build (its Makefiles cannot stand enableParallelBuild)

svn path=/nixpkgs/branches/stdenv-updates/; revision=24679
This commit is contained in:
Lluís Batlle i Rossell 2010-11-12 21:04:19 +00:00
parent 8746de3ae8
commit 951ccd21a1
2 changed files with 4 additions and 2 deletions

View File

@ -127,7 +127,8 @@ stdenv.mkDerivation ({
passthru = { inherit langC langCC langFortran langVhdl langTreelang passthru = { inherit langC langCC langFortran langVhdl langTreelang
enableMultilib; }; enableMultilib; };
enableParallelBuilding = true; # ghdl does not build fine with parallel building
enableParallelBuilding = if langVhdl then false else true;
meta = { meta = {
homepage = "http://gcc.gnu.org/"; homepage = "http://gcc.gnu.org/";

View File

@ -247,7 +247,8 @@ stdenv.mkDerivation ({
passthru = { inherit langC langCC langAda langFortran langTreelang langVhdl passthru = { inherit langC langCC langAda langFortran langTreelang langVhdl
enableMultilib version; }; enableMultilib version; };
enableParallelBuilding = true; # ghdl does not build fine with parallel building
enableParallelBuilding = if langVhdl then false else true;
meta = { meta = {
homepage = http://gcc.gnu.org/; homepage = http://gcc.gnu.org/;