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:
parent
8746de3ae8
commit
951ccd21a1
|
@ -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/";
|
||||
|
|
|
@ -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/;
|
||||
|
|
Loading…
Reference in a new issue