From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:34864) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qz2Ib-0003Jf-LY for qemu-devel@nongnu.org; Thu, 01 Sep 2011 04:07:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qz2IM-0007ed-T4 for qemu-devel@nongnu.org; Thu, 01 Sep 2011 04:06:52 -0400 Received: from mtagate7.uk.ibm.com ([194.196.100.167]:56263) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qz2IM-0007Y5-LB for qemu-devel@nongnu.org; Thu, 01 Sep 2011 04:06:42 -0400 Received: from d06nrmr1806.portsmouth.uk.ibm.com (d06nrmr1806.portsmouth.uk.ibm.com [9.149.39.193]) by mtagate7.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p8186ViI027219 for ; Thu, 1 Sep 2011 08:06:31 GMT Received: from d06av09.portsmouth.uk.ibm.com (d06av09.portsmouth.uk.ibm.com [9.149.37.250]) by d06nrmr1806.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p8186TQo2301986 for ; Thu, 1 Sep 2011 09:06:30 +0100 Received: from d06av09.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av09.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p8186SZg019954 for ; Thu, 1 Sep 2011 02:06:28 -0600 From: Stefan Hajnoczi Date: Thu, 1 Sep 2011 09:06:12 +0100 Message-Id: <1314864386-14202-2-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1314864386-14202-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1314864386-14202-1-git-send-email-stefanha@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 01/15] build: Fix linkage of QEMU_PROG List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Anthony Liguori , =?UTF-8?q?Llu=C3=ADs?= , =?UTF-8?q?Llu=C3=ADs=20Vilanova?= From: Llu=C3=ADs Using '$^' to establish the files to link with will remove any repeated e= ntries in the list of dependencies. Signed-off-by: Llu=C3=ADs Vilanova --- Makefile.target | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.target b/Makefile.target index 07af4d4..62ddfc9 100644 --- a/Makefile.target +++ b/Makefile.target @@ -398,7 +398,7 @@ obj-y +=3D $(addprefix ../, $(trace-obj-y)) obj-$(CONFIG_GDBSTUB_XML) +=3D gdbstub-xml.o =20 $(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y) - $(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)) + $(call LINK,$^) =20 =20 gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh --=20 1.7.5.4