diff options
author | Lluís <xscript@gmx.net> | 2011-08-31 20:30:37 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2011-09-01 10:34:53 +0100 |
commit | 51010317dd74a7d6ad30dcc73478924aa4f590c5 (patch) | |
tree | 816c71ab8d8654f0a947d6a1aa1afb8fefa2897b /Makefile.objs | |
parent | e03b41d47708744669aaa51e781021c3dc380198 (diff) |
build: [simple] Include qemu-timer-common.o in trace-obj-y
Helper programs like qemu-ga use tracing primitives, but qemu-timer-common.o
(also used by simpletrace.o) is not necessarily included in the linkage line.
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
Diffstat (limited to 'Makefile.objs')
-rw-r--r-- | Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.objs b/Makefile.objs index d1f3e5dae5..44d72381c0 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -380,7 +380,7 @@ else trace-obj-y = trace.o ifeq ($(TRACE_BACKEND),simple) trace-obj-y += simpletrace.o -user-obj-y += qemu-timer-common.o +trace-obj-y += qemu-timer-common.o endif endif |