From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39483) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHB2c-00055g-NS for qemu-devel@nongnu.org; Thu, 07 Jan 2016 08:55:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aHB2b-0006ZV-UK for qemu-devel@nongnu.org; Thu, 07 Jan 2016 08:55:50 -0500 Received: from mailhub.sw.ru ([195.214.232.25]:38803 helo=relay.sw.ru) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHB2b-0006Y2-Hy for qemu-devel@nongnu.org; Thu, 07 Jan 2016 08:55:49 -0500 From: "Denis V. Lunev" Date: Thu, 7 Jan 2016 16:55:29 +0300 Message-Id: <1452174932-28657-9-git-send-email-den@openvz.org> In-Reply-To: <1452174932-28657-1-git-send-email-den@openvz.org> References: <1452174932-28657-1-git-send-email-den@openvz.org> Subject: [Qemu-devel] [PATCH 08/11] log: move qemu-log.c into util/ directory List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: pbonzini@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com, "Denis V. Lunev" log will become common facility with tracepoints support in next step. Signed-off-by: Denis V. Lunev Reviewed-by: Paolo Bonzini --- Makefile.objs | 1 - util/Makefile.objs | 1 + qemu-log.c => util/log.c | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename qemu-log.c => util/log.c (100%) diff --git a/Makefile.objs b/Makefile.objs index dac2c02..b003533 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -88,7 +88,6 @@ endif ####################################################################### # Target-independent parts used in system and user emulation -common-obj-y += qemu-log.o common-obj-y += tcg-runtime.o common-obj-y += hw/ common-obj-y += qom/ diff --git a/util/Makefile.objs b/util/Makefile.objs index 8620a80..a8a777e 100644 --- a/util/Makefile.objs +++ b/util/Makefile.objs @@ -31,3 +31,4 @@ util-obj-y += coroutine-$(CONFIG_COROUTINE_BACKEND).o util-obj-y += buffer.o util-obj-y += timed-average.o util-obj-y += base64.o +util-obj-y += log.o diff --git a/qemu-log.c b/util/log.c similarity index 100% rename from qemu-log.c rename to util/log.c -- 2.5.0