From: Stefan Hajnoczi Date: Tue, 27 Mar 2012 07:26:18 +0000 (+0100) Subject: configure: fix mingw32 libs_qga typo X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=368542b8356038593c4d394d87ee086ef65a6da3;p=qemu.git configure: fix mingw32 libs_qga typo 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 --- diff --git a/configure b/configure index 4b3adc9bd4..c0a542b489 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=""