From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:46783) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R25vH-0008Uc-DF for qemu-devel@nongnu.org; Fri, 09 Sep 2011 14:35:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R25vF-00034m-SN for qemu-devel@nongnu.org; Fri, 09 Sep 2011 14:35:31 -0400 Received: from e8.ny.us.ibm.com ([32.97.182.138]:51002) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R25vF-00034i-Nn for qemu-devel@nongnu.org; Fri, 09 Sep 2011 14:35:29 -0400 Received: from d01relay04.pok.ibm.com (d01relay04.pok.ibm.com [9.56.227.236]) by e8.ny.us.ibm.com (8.14.4/8.13.1) with ESMTP id p89IKvMx026127 for ; Fri, 9 Sep 2011 14:20:57 -0400 Received: from d01av04.pok.ibm.com (d01av04.pok.ibm.com [9.56.224.64]) by d01relay04.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p89IZEe7221678 for ; Fri, 9 Sep 2011 14:35:14 -0400 Received: from d01av04.pok.ibm.com (loopback [127.0.0.1]) by d01av04.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p89IZDZ6018475 for ; Fri, 9 Sep 2011 14:35:14 -0400 Message-ID: <4E6A5C60.9090704@us.ibm.com> Date: Fri, 09 Sep 2011 13:35:12 -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. 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"