From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57460) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WXG3H-0007Sx-R8 for qemu-devel@nongnu.org; Mon, 07 Apr 2014 16:22:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WXG35-00047R-9Y for qemu-devel@nongnu.org; Mon, 07 Apr 2014 16:21:55 -0400 Received: from e33.co.us.ibm.com ([32.97.110.151]:50243) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WXG35-00046u-1i for qemu-devel@nongnu.org; Mon, 07 Apr 2014 16:21:43 -0400 Received: from /spool/local by e33.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 7 Apr 2014 14:21:41 -0600 Received: from b03cxnp08028.gho.boulder.ibm.com (b03cxnp08028.gho.boulder.ibm.com [9.17.130.20]) by d03dlp01.boulder.ibm.com (Postfix) with ESMTP id 881E51FF0029 for ; Mon, 7 Apr 2014 14:21:38 -0600 (MDT) Received: from d03av04.boulder.ibm.com (d03av04.boulder.ibm.com [9.17.195.170]) by b03cxnp08028.gho.boulder.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id s37KLc1E9634230 for ; Mon, 7 Apr 2014 22:21:38 +0200 Received: from d03av04.boulder.ibm.com (loopback [127.0.0.1]) by d03av04.boulder.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id s37KLccV013556 for ; Mon, 7 Apr 2014 14:21:38 -0600 From: Michael Roth Date: Mon, 7 Apr 2014 15:21:30 -0500 Message-Id: <1396902091-10389-2-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1396902091-10389-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1396902091-10389-1-git-send-email-mdroth@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH for-2.0 1/2] Makefile: add qga-vss-dll-obj-y to nested variables List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, tomoki.sekiyama@hds.com From: Tomoki Sekiyama The build rule for qga/vss-win32/qga-vss.dll is broken by commit ba1183da9a10b94611cad88c44a5c6df005f9b55, because it misses qga-vss-dll-obj-y in the list of nested variables. This fixes build of qga-vss.dll by adding qga-vss-dll-obj-y to the list. Signed-off-by: Tomoki Sekiyama Signed-off-by: Michael Roth --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index d622799..423e373 100644 --- a/Makefile +++ b/Makefile @@ -133,6 +133,7 @@ dummy := $(call unnest-vars,, \ stub-obj-y \ util-obj-y \ qga-obj-y \ + qga-vss-dll-obj-y \ block-obj-y \ block-obj-m \ common-obj-y \ -- 1.7.9.5