You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by me...@apache.org on 2007/04/11 22:47:31 UTC

svn commit: r527660 - /incubator/qpid/trunk/qpid/cpp/src/tests/Makefile.am

Author: meyering
Date: Wed Apr 11 13:47:30 2007
New Revision: 527660

URL: http://svn.apache.org/viewvc?view=rev&rev=527660
Log:
* src/tests/Makefile.am: Use .NOTPARALLEL target to suppress
parallelism in this directory, even when make is invoked with
e.g., -j2.

Modified:
    incubator/qpid/trunk/qpid/cpp/src/tests/Makefile.am

Modified: incubator/qpid/trunk/qpid/cpp/src/tests/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/tests/Makefile.am?view=diff&rev=527660&r1=527659&r2=527660
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/tests/Makefile.am (original)
+++ incubator/qpid/trunk/qpid/cpp/src/tests/Makefile.am Wed Apr 11 13:47:30 2007
@@ -121,3 +121,7 @@
 .valgrindrc: .valgrindrc-default
 	cp $(srcdir)/.valgrindrc-default .valgrindrc
 
+# Tell GNU make not to build targets in this directory in parallel.
+# This is necessary because with two or more identical and simultaneous
+# ltmain invocations, one may corrupt the temporaries of the other.
+.NOTPARALLEL: