From e098fc3fd2a5c9be6b38f6f54bd466f218b7c4e9 Mon Sep 17 00:00:00 2001 From: Michael Roth Date: Wed, 7 Sep 2011 18:40:52 -0500 Subject: [PATCH] build: fix race with creating qapi-generated 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 Signed-off-by: Anthony Liguori --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 9ab3ab4eb0..8507846483 100755 --- a/configure +++ b/configure @@ -3622,7 +3622,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 qdict-test-data.txt" FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" -- 2.11.4.GIT