|
From: <sv...@va...> - 2005-11-11 18:35:47
|
Author: sewardj Date: 2005-11-11 18:35:32 +0000 (Fri, 11 Nov 2005) New Revision: 5091 Log: Kludge which stops biarch builds going to hell at make -j 2 or above. Modified: trunk/Makefile.all.am Modified: trunk/Makefile.all.am =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/Makefile.all.am 2005-11-11 17:21:20 UTC (rev 5090) +++ trunk/Makefile.all.am 2005-11-11 18:35:32 UTC (rev 5091) @@ -6,3 +6,8 @@ inplacedir =3D $(top_builddir)/.in_place =20 =20 +# The kludge that passes for vex's build system can't handle parallel +# builds. So, for the time being, serialise all Valgrind building. +# (this is equivalent to enforcing "make -j 1". +.NOTPARALLEL: + |