From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:54946) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SCUOD-0000uU-6K for qemu-devel@nongnu.org; Tue, 27 Mar 2012 07:16:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SCUO6-00069B-Qu for qemu-devel@nongnu.org; Tue, 27 Mar 2012 07:16:36 -0400 Received: from e06smtp12.uk.ibm.com ([195.75.94.108]:58700) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SCUO6-00068F-IX for qemu-devel@nongnu.org; Tue, 27 Mar 2012 07:16:30 -0400 Received: from /spool/local by e06smtp12.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 27 Mar 2012 12:16:26 +0100 Received: from d06av02.portsmouth.uk.ibm.com (d06av02.portsmouth.uk.ibm.com [9.149.37.228]) by d06nrmr1307.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q2RBGMWK2756810 for ; Tue, 27 Mar 2012 12:16:23 +0100 Received: from d06av02.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av02.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q2RBGMOX019699 for ; Tue, 27 Mar 2012 05:16:22 -0600 From: Stefan Hajnoczi Date: Tue, 27 Mar 2012 08:26:18 +0100 Message-Id: <1332833178-18521-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH] configure: fix mingw32 libs_qga typo List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Lee Essen , 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 --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 14ef738..d63c011 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