WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] [PATCH] More .NOTPARALLEL in tools/ocaml

To: xen-devel@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-devel] [PATCH] More .NOTPARALLEL in tools/ocaml
From: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx>
Date: Tue, 22 Jun 2010 14:53:00 +0100
Delivery-date: Tue, 22 Jun 2010 06:54:15 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
tools/ocaml was capable of descending into lib/* and xenstored/
simultaneously, obviously with poor results.

Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>

diff -r 31708477f0a9 tools/ocaml/Makefile
--- a/tools/ocaml/Makefile      Mon Jun 21 09:59:10 2010 +0100
+++ b/tools/ocaml/Makefile      Tue Jun 22 14:52:10 2010 +0100
@@ -9,6 +9,10 @@
 SUBDIRS_PROGRAMS = xenstored
 
 SUBDIRS = $(SUBDIRS_LIBS) $(SUBDIRS_PROGRAMS)
+
+.NOTPARALLEL:
+# targets here must be run in order, otherwise we can try
+# to build programs before the libraries are done
 
 .PHONY: all
 all: build

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] [PATCH] More .NOTPARALLEL in tools/ocaml, Ian Jackson <=