From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:37057) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R783q-0005SG-L7 for qemu-devel@nongnu.org; Fri, 23 Sep 2011 11:53:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R783p-0000ww-Iq for qemu-devel@nongnu.org; Fri, 23 Sep 2011 11:53:10 -0400 Received: from e35.co.us.ibm.com ([32.97.110.153]:34394) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R783p-0000wl-9k for qemu-devel@nongnu.org; Fri, 23 Sep 2011 11:53:09 -0400 Received: from d03relay03.boulder.ibm.com (d03relay03.boulder.ibm.com [9.17.195.228]) by e35.co.us.ibm.com (8.14.4/8.13.1) with ESMTP id p8NFWBKe031858 for ; Fri, 23 Sep 2011 09:32:11 -0600 Received: from d03av06.boulder.ibm.com (d03av06.boulder.ibm.com [9.17.195.245]) by d03relay03.boulder.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p8NFqoDR092950 for ; Fri, 23 Sep 2011 09:52:51 -0600 Received: from d03av06.boulder.ibm.com (loopback [127.0.0.1]) by d03av06.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p8NFwkRb031557 for ; Fri, 23 Sep 2011 09:58:47 -0600 Message-ID: <4E7CAB4F.8030607@us.ibm.com> Date: Fri, 23 Sep 2011 10:52:47 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1315438852-18029-1-git-send-email-mdroth@linux.vnet.ibm.com> <1315438852-18029-2-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1315438852-18029-2-git-send-email-mdroth@linux.vnet.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 2/2] build: fix race with creating qapi-generated List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Michael Roth Cc: qemu-devel@nongnu.org, agraf@suse.de On 09/07/2011 06:40 PM, Michael Roth wrote: > Since qapi-generated/ is a global QEMU include path, we need to make > sure it is created before anything is compiled, so do this in the > configure phase rather than via the Makefile. > > Signed-off-by: Michael Roth Applied for real this time :-) Thanks. Regards, Anthony Liguori > --- > configure | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/configure b/configure > index c3044c7..0794f31 100755 > --- a/configure > +++ b/configure > @@ -3612,7 +3612,7 @@ DIRS="tests tests/cris slirp audio block net pc-bios/optionrom" > DIRS="$DIRS pc-bios/spapr-rtas" > DIRS="$DIRS roms/seabios roms/vgabios" > DIRS="$DIRS fsdev ui" > -DIRS="$DIRS qapi" > +DIRS="$DIRS qapi qapi-generated" > DIRS="$DIRS qga trace" > FILES="Makefile tests/Makefile" > FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"