3
0
Fork 0
forked from mirrors/nixpkgs

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
enableMultilib; };
enableParallelBuilding = true;
# ghdl does not build fine with parallel building
enableParallelBuilding = if langVhdl then false else true;
meta = {
homepage = "http://gcc.gnu.org/";

View file

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