From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42162) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VMahW-00049i-Uj for qemu-devel@nongnu.org; Thu, 19 Sep 2013 05:39:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VMahQ-0003Y4-KW for qemu-devel@nongnu.org; Thu, 19 Sep 2013 05:39:06 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39686) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VMahQ-0003Xk-Ck for qemu-devel@nongnu.org; Thu, 19 Sep 2013 05:39:00 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r8J9cxjS022905 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 19 Sep 2013 05:38:59 -0400 From: Gerd Hoffmann Date: Thu, 19 Sep 2013 11:38:54 +0200 Message-Id: <1379583534-7831-5-git-send-email-kraxel@redhat.com> In-Reply-To: <1379583534-7831-1-git-send-email-kraxel@redhat.com> References: <1379583534-7831-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 4/4] qxl: compile only once List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- hw/display/Makefile.objs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hw/display/Makefile.objs b/hw/display/Makefile.objs index 6e9fb3b..540df82 100644 --- a/hw/display/Makefile.objs +++ b/hw/display/Makefile.objs @@ -31,5 +31,4 @@ obj-$(CONFIG_TCX) += tcx.o obj-$(CONFIG_VGA) += vga.o -common-obj-$(CONFIG_QXL) += qxl-logger.o qxl-render.o -obj-$(CONFIG_QXL) += qxl.o +common-obj-$(CONFIG_QXL) += qxl.o qxl-logger.o qxl-render.o -- 1.8.3.1