diff options
author | Michael Roth <mdroth@linux.vnet.ibm.com> | 2011-09-07 18:40:52 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-09-23 10:55:34 -0500 |
commit | e098fc3fd2a5c9be6b38f6f54bd466f218b7c4e9 (patch) | |
tree | 9bd5ec8ce46f72e384ec17c4fc0f549206e82942 /configure | |
parent | 4c08fd1e42a886bccc02e5fe18e98b948c252986 (diff) |
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 <mdroth@linux.vnet.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |