From patchwork Wed Aug 26 22:21:34 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Michael Roth X-Patchwork-Id: 511076 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id C46511402A9 for ; Thu, 27 Aug 2015 08:34:53 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=BDrDiLi7; dkim-atps=neutral Received: from localhost ([::1]:43755 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUjHP-0007cS-Su for incoming@patchwork.ozlabs.org; Wed, 26 Aug 2015 18:34:51 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43616) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUjGp-0006U3-2P for qemu-devel@nongnu.org; Wed, 26 Aug 2015 18:34:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZUjGo-0001Lm-7o for qemu-devel@nongnu.org; Wed, 26 Aug 2015 18:34:15 -0400 Received: from mail-oi0-x234.google.com ([2607:f8b0:4003:c06::234]:34084) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUjGo-0001LX-3g for qemu-devel@nongnu.org; Wed, 26 Aug 2015 18:34:14 -0400 Received: by oiex83 with SMTP id x83so1056360oie.1 for ; Wed, 26 Aug 2015 15:34:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=ZV8P3ekjmX3R2Y9SC1X9/F0AIGd/A1g5P7rPxFHbYH4=; b=BDrDiLi7NYuShcx0fru50PQgd1qZSgo88eo4FzA/4l0bjxEZJQFpYYCxgZBAKW6NV5 A7gm7Twg64ubZdXCgbhtGpq3KedgUqr7dyb5BHboC81pG8YFFx8pd/YNzMvQEDSSwayU Kjom8A7AF1vv61Da1r0C+Z8yoTvK41XCivO6pHECt4oPttn5PkiBSu97drwFYLljNAOK 4pfyTPrTbeOSoFyqECy9yGxzHphjeRMIFH41xiIrfGttHw1MQwnhd0s4ewEHTiuWkv3p zo6T7W8yxE1XFXWWE/7AHGIp5ipaJh5Hk1Oga8XZKAPtWNl1ocAMJVoTAun04PoSG+6E Y+bg== X-Received: by 10.202.241.6 with SMTP id p6mr633980oih.1.1440628453681; Wed, 26 Aug 2015 15:34:13 -0700 (PDT) Received: from localhost (104-184-96-177.lightspeed.austtx.sbcglobal.net. [104.184.96.177]) by smtp.gmail.com with ESMTPSA id r63sm89606oia.16.2015.08.26.15.34.13 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 26 Aug 2015 15:34:13 -0700 (PDT) From: Michael Roth To: qemu-devel@nongnu.org Date: Wed, 26 Aug 2015 17:21:34 -0500 Message-Id: <1440627694-25096-5-git-send-email-mdroth@linux.vnet.ibm.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1440627694-25096-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1440627694-25096-1-git-send-email-mdroth@linux.vnet.ibm.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4003:c06::234 Cc: marcandre.lureau@redhat.com, yhindin@redhat.com, leonid@daynix.com, pbonzini@redhat.com Subject: [Qemu-devel] [PATCH 4/4] Makefile: qemu-ga: fix msi target error message X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org '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. Signed-off-by: Michael Roth Reviewed-by: Marc-André Lureau --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 137beb9..3814026 100644 --- a/Makefile +++ b/Makefile @@ -307,7 +307,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: