diff mbox

qemu-qa: fix build with mingw

Message ID 1377706845-28125-1-git-send-email-yan@daynix.com
State New
Headers show

Commit Message

Yan Vugenfirer Aug. 28, 2013, 4:20 p.m. UTC
Fixing broken stand alone build of qemu-ga using mingw.
The problem was introduced by commit e8ef31a35.

Signed-off-by: Yan Vugenfirer <yan@daynix.com>
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/configure b/configure
index 0a55c20..20becfa 100755
--- a/configure
+++ b/configure
@@ -3477,7 +3477,7 @@  if test "$softmmu" = yes ; then
   fi
 fi
 if [ "$guest_agent" != "no" ]; then
-  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
+  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32" = "yes" ] ; then
       tools="qemu-ga\$(EXESUF) $tools"
       guest_agent=yes
   elif [ "$guest_agent" != yes ]; then