configure: fix mingw32 libs_qga typo
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Tue, 27 Mar 2012 07:26:18 +0000 (08:26 +0100)
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Tue, 3 Apr 2012 08:34:33 +0000 (09:34 +0100)
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 <stefanha@linux.vnet.ibm.com>
Reviewed-by: Andreas Färber <afaerber@suse.de>
configure

index 4b3adc9..c0a542b 100755 (executable)
--- 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=""