From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45182) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VJigL-0003pd-CQ for qemu-devel@nongnu.org; Wed, 11 Sep 2013 07:34:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VJigD-0005Wg-WC for qemu-devel@nongnu.org; Wed, 11 Sep 2013 07:34:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:8382) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VJigD-0005WX-Ow for qemu-devel@nongnu.org; Wed, 11 Sep 2013 07:33:53 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r8BBXqRO030589 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 11 Sep 2013 07:33:52 -0400 From: Gerd Hoffmann Date: Wed, 11 Sep 2013 13:33:40 +0200 Message-Id: <1378899220-7631-4-git-send-email-kraxel@redhat.com> In-Reply-To: <1378899220-7631-1-git-send-email-kraxel@redhat.com> References: <1378899220-7631-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: pbonzini@redhat.com, famz@redhat.com, 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