summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2012-03-27 08:26:18 +0100
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2012-04-03 09:34:33 +0100
commit368542b8356038593c4d394d87ee086ef65a6da3 (patch)
treec7274adaf5979df5da154fb08a3985db8c291f66 /configure
parentf05f6b4adb4db3affb0cdd17383b0a7e905e66e1 (diff)
downloadqemu-368542b8356038593c4d394d87ee086ef65a6da3.tar.gz
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 <stefanha@linux.vnet.ibm.com> Reviewed-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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=""