From 3c0b7673885580db86153ba3ad7b0919234630a4 Mon Sep 17 00:00:00 2001 Message-Id: From: Blue Swirl Date: Tue, 23 Aug 2011 14:46:46 +0000 Subject: [PATCH 1/2] Fix guest agent build with simpletrace 957f1f99f263d57612807a9535f75ca4473f05f0 didn't consider that qemu-timer-common.o is needed by simpletrace. Fix by adding it to qga object list. Signed-off-by: Blue Swirl --- Makefile.objs | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Makefile.objs b/Makefile.objs index d1f3e5d..df11aec 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -404,6 +404,9 @@ qga-obj-y = $(addprefix qga/, $(qga-nested-y)) qga-obj-y += qemu-ga.o qemu-tool.o qemu-error.o qemu-sockets.o module.o qemu-option.o cutils.o osdep.o qga-obj-$(CONFIG_WIN32) += oslib-win32.o qga-obj-$(CONFIG_POSIX) += oslib-posix.o +ifeq ($(TRACE_BACKEND),simple) +qga-obj-y += qemu-timer-common.o +endif vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS) -- 1.7.2.5