diff options
author | Lluís Vilanova | 2012-12-14 20:13:09 +0100 |
---|---|---|
committer | Anthony Liguori | 2012-12-23 21:28:02 +0100 |
commit | eac236ea7bfc1902126be70459e320591078df5c (patch) | |
tree | 5b126e6f8925eab15e7265a0c424ce570b709636 /scripts/tracetool/backend | |
parent | win32: Switch thread abstraction to us TLS variable internally (diff) | |
download | qemu-eac236ea7bfc1902126be70459e320591078df5c.tar.gz qemu-eac236ea7bfc1902126be70459e320591078df5c.tar.xz qemu-eac236ea7bfc1902126be70459e320591078df5c.zip |
build: Use separate makefile for "trace/"
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
--
Changes in v2:
* Do not depend on "qemu-timer-common.o".
* Use "$(obj)" in rules to refer to the build sub-directory.
* Remove dependencies against "$(GENERATED_HEADERS)".
Cc: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'scripts/tracetool/backend')
-rw-r--r-- | scripts/tracetool/backend/dtrace.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/tracetool/backend/dtrace.py b/scripts/tracetool/backend/dtrace.py index 23c43e2772..ad5eb3b0ab 100644 --- a/scripts/tracetool/backend/dtrace.py +++ b/scripts/tracetool/backend/dtrace.py @@ -37,7 +37,7 @@ def c(events): def h(events): - out('#include "trace-dtrace.h"', + out('#include "trace/generated-tracers-dtrace.h"', '') for e in events: |