diff options
| author | Andreas Färber | 2012-01-17 13:16:05 +0100 |
|---|---|---|
| committer | Stefan Hajnoczi | 2012-01-19 09:19:16 +0100 |
| commit | e454e2e258e4a35ec164ec3bd5c168df56011513 (patch) | |
| tree | 2068c7807bfc9d441af0dbe7076eb1aaa1ad6c9b | |
| parent | lm32: Fix mixup of uint32 and uint32_t (diff) | |
| download | qemu-e454e2e258e4a35ec164ec3bd5c168df56011513.tar.gz qemu-e454e2e258e4a35ec164ec3bd5c168df56011513.tar.xz qemu-e454e2e258e4a35ec164ec3bd5c168df56011513.zip | |
Makefile: Exclude tests/Makefile in unconfigured tree
Since commit dbfe06c62ccedc5b64e1c6466445133dd50f6de1 (build:
split unit test builds to a separate makefile fragment),
in absence of config-host.mak an undefined $(SRC_PATH) breaks
`make distclean' due to /tests/Makefile not being include'able.
Fix by only including when config-host.mak is present.
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Cc: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
| -rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -168,7 +168,9 @@ qemu-ga$(EXESUF): LIBS = $(LIBS_QGA) gen-out-type = $(subst .,-,$(suffix $@)) +ifneq ($(wildcard config-host.mak),) include $(SRC_PATH)/tests/Makefile +endif $(qapi-dir)/qga-qapi-types.c $(qapi-dir)/qga-qapi-types.h :\ $(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-types.py |
