From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43709) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zru3i-0005U8-EX for qemu-devel@nongnu.org; Thu, 29 Oct 2015 16:44:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zru3h-0001In-HR for qemu-devel@nongnu.org; Thu, 29 Oct 2015 16:44:30 -0400 Received: from mailhub.sw.ru ([195.214.232.25]:26007 helo=relay.sw.ru) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zru3h-0001I9-5Y for qemu-devel@nongnu.org; Thu, 29 Oct 2015 16:44:29 -0400 From: "Denis V. Lunev" Date: Thu, 29 Oct 2015 23:44:14 +0300 Message-Id: <1446151457-21157-9-git-send-email-den@openvz.org> In-Reply-To: <1446151457-21157-1-git-send-email-den@openvz.org> References: <1446151457-21157-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: "Denis V. Lunev" , qemu-devel@nongnu.org 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 fe02ee2..cdd7f83 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -81,7 +81,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 d7cc399..a11915c 100644 --- a/util/Makefile.objs +++ b/util/Makefile.objs @@ -29,3 +29,4 @@ util-obj-y += qemu-coroutine.o qemu-coroutine-lock.o qemu-coroutine-io.o util-obj-y += qemu-coroutine-sleep.o util-obj-y += coroutine-$(CONFIG_COROUTINE_BACKEND).o util-obj-y += buffer.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.1.4