From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olaf Hering Subject: Re: [PATCH] tools/vtpm: fix version.h error during parallel build Date: Thu, 12 Jul 2012 17:07:23 +0200 Message-ID: <20120712150723.GA27324@aepfle.de> References: <02ec826cab1e4acb25b3.1342079516@probook.site> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <02ec826cab1e4acb25b3.1342079516@probook.site> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org On Thu, Jul 12, Olaf Hering wrote: > ++++ tpm_emulator-0.5.1/Makefile > +@@ -14,13 +14,16 @@ SUBDIRS := tpmd > + > + all: version all-recursive The actual bug is that version and all-recursive will run in parallel. To fix this all-recursive needs to depend on version. I will send a fixed version of that patch. Olaf