[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 1/2] build: fix missing trace dep on GENERATED_HEADE
From: |
Michael Roth |
Subject: |
[Qemu-devel] [PATCH 1/2] build: fix missing trace dep on GENERATED_HEADERS |
Date: |
Wed, 7 Sep 2011 18:40:51 -0500 |
fc764105 added an include for qemu-common.h to trace/control.h, which
made all users of this header file dependent on GENERATED_HEADERS. Since
it's used by pretty much all the trace backends now, make trace-obj-y
dependent on GENERATED_HEADERS.
Signed-off-by: Michael Roth <address@hidden>
---
Makefile.objs | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/Makefile.objs b/Makefile.objs
index 26b885b..a529a11 100644
--- a/Makefile.objs
+++ b/Makefile.objs
@@ -390,6 +390,8 @@ trace-nested-y += control.o
trace-obj-y += $(addprefix trace/, $(trace-nested-y))
+$(trace-obj-y): $(GENERATED_HEADERS)
+
######################################################################
# smartcard
--
1.7.0.4
- [Qemu-devel] [PATCH 1/2] build: fix missing trace dep on GENERATED_HEADERS,
Michael Roth <=