From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53953) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZV725-0000tI-4R for qemu-devel@nongnu.org; Thu, 27 Aug 2015 19:56:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZV721-0001p3-UG for qemu-devel@nongnu.org; Thu, 27 Aug 2015 19:56:37 -0400 Received: from e33.co.us.ibm.com ([32.97.110.151]:52357) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZV721-0001oV-NI for qemu-devel@nongnu.org; Thu, 27 Aug 2015 19:56:33 -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 ; Thu, 27 Aug 2015 17:56:33 -0600 Received: from b03cxnp07029.gho.boulder.ibm.com (b03cxnp07029.gho.boulder.ibm.com [9.17.130.16]) by d03dlp02.boulder.ibm.com (Postfix) with ESMTP id 44F393E40041 for ; Thu, 27 Aug 2015 17:56:31 -0600 (MDT) Received: from d03av05.boulder.ibm.com (d03av05.boulder.ibm.com [9.17.195.85]) by b03cxnp07029.gho.boulder.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t7RNuVSP52232248 for ; Thu, 27 Aug 2015 16:56:31 -0700 Received: from d03av05.boulder.ibm.com (localhost [127.0.0.1]) by d03av05.boulder.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t7RNuUiC015445 for ; Thu, 27 Aug 2015 17:56:31 -0600 From: Michael Roth Date: Thu, 27 Aug 2015 18:55:44 -0500 Message-Id: <1440719744-24755-5-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1440719744-24755-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1440719744-24755-1-git-send-email-mdroth@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 4/4] Makefile: qemu-ga: fix msi target error message List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: marcandre.lureau@redhat.com, yhindin@redhat.com, leonid@daynix.com, pbonzini@redhat.com 'msi' target reports error if we attempt to use it when QEMU hasn't been ./configure'd to enable it. The parenthesis cause an interpreter error if we don't enclose the error in quotes. Reviewed-by: Marc-André Lureau Signed-off-by: Michael Roth --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dbdeb47..9ce3972 100644 --- a/Makefile +++ b/Makefile @@ -310,7 +310,7 @@ $(QEMU_GA_MSI): $(SRC_PATH)/qga/installer/qemu-ga.wxs wixl -o $@ $(QEMU_GA_MSI_ARCH) $(QEMU_GA_MSI_WITH_VSS) $(QEMU_GA_MSI_MINGW_DLL_PATH) $<, " WIXL $@") else msi: - @echo MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option) + @echo "MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)" endif clean: -- 1.9.1