From 368542b8356038593c4d394d87ee086ef65a6da3 Mon Sep 17 00:00:00 2001 From: Stefan Hajnoczi Date: Tue, 27 Mar 2012 08:26:18 +0100 Subject: [PATCH] configure: fix mingw32 libs_qga typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 file changed, 1 insertion(+), 1 deletion(-) 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=""