| Submitter | Prerna Saxena |
|---|---|
| Date | June 8, 2010, 6:34 a.m. |
| Message ID | <20100608120408.77258567@zephyr> |
| Download | mbox | patch |
| Permalink | /patch/54935/ |
| State | New |
| Headers | show |
Comments
Thanks, applied! Got back from holiday today and am catching up on tracing emails. http://repo.or.cz/w/qemu/stefanha.git/commitdiff/3e59a5f51675d377a0fda88d4b83138a6b872962 Stefan
Patch
diff --git a/Makefile b/Makefile index a9f79a9..ef4ae55 100644 --- a/Makefile +++ b/Makefile @@ -130,10 +130,10 @@ bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS) iov.o: iov.c iov.h -trace.h: trace-events +trace.h: $(SRC_PATH)/trace-events $(call quiet-command,sh $(SRC_PATH)/tracetool --$(TRACE_BACKEND) -h < $< > $@," GEN $@") -trace.c: trace-events +trace.c: $(SRC_PATH)/trace-events $(call quiet-command,sh $(SRC_PATH)/tracetool --$(TRACE_BACKEND) -c < $< > $@," GEN $@") trace.o: trace.c
This patch is a minor fix over Stefan's tracing framework, to enable compilation when the build directory is different from source. Signed-off-by: Prerna Saxena <prerna@linux.vnet.ibm.com> --- Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)