From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55142) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SF1Cn-0006ZX-MQ for qemu-devel@nongnu.org; Tue, 03 Apr 2012 06:43:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SF1Cl-0002Dz-UA for qemu-devel@nongnu.org; Tue, 03 Apr 2012 06:43:17 -0400 Received: from e06smtp15.uk.ibm.com ([195.75.94.111]:55407) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SF1Cl-0002Ct-M3 for qemu-devel@nongnu.org; Tue, 03 Apr 2012 06:43:15 -0400 Received: from /spool/local by e06smtp15.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 3 Apr 2012 11:43:11 +0100 Received: from d06av11.portsmouth.uk.ibm.com (d06av11.portsmouth.uk.ibm.com [9.149.37.252]) by d06nrmr1507.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q33Agur31917128 for ; Tue, 3 Apr 2012 11:42:57 +0100 Received: from d06av11.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av11.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q33Agt2N026505 for ; Tue, 3 Apr 2012 04:42:55 -0600 From: Stefan Hajnoczi Date: Tue, 3 Apr 2012 11:42:40 +0100 Message-Id: <1333449767-16410-2-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1333449767-16410-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1333449767-16410-1-git-send-email-stefanha@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 1/8] configure: fix mingw32 libs_qga typo List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel@nongnu.org, Stefan Hajnoczi It's typical to prepend or append parameters to an argument string so that other places in ./configure can add parameters without clobbering the string. In the mingw32 libs_qga case there is a typo "$lib_qga" instead of "$libs_qga". Signed-off-by: Stefan Hajnoczi Reviewed-by: Andreas Färber --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 4b3adc9..c0a542b 100755 --- a/configure +++ b/configure @@ -526,7 +526,7 @@ EOF bindir="\${prefix}" sysconfdir="\${prefix}" confsuffix="" - libs_qga="-lws2_32 -lwinmm -lpowrprof $lib_qga" + libs_qga="-lws2_32 -lwinmm -lpowrprof $libs_qga" fi werror="" -- 1.7.9.1