summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2009-11-18 16:14:09 +0100
committerAurelien Jarno <aurelien@aurel32.net>2009-11-21 00:37:14 +0100
commit86355e0700e4bc238ef2d01271c9bbe5d59b2aea (patch)
tree10938928452a6eb7c20e4c7f57d7d25ea86253c5 /configure
parente0cf6d15e374c8db39acda551845ecc62f5205a3 (diff)
downloadqemu-86355e0700e4bc238ef2d01271c9bbe5d59b2aea.tar.gz
qemu-io: build on all platforms
Since c32d766af127f68bb75ba5689f2f5239227bf559, qemu-io should be portable. It is currently built only on linux and mingw32. This patch enables qemu-io on all platforms. Tested on FreeBSD. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 2 insertions, 4 deletions
diff --git a/configure b/configure
index e108dfb18c..e314ac6430 100755
--- a/configure
+++ b/configure
@@ -2087,15 +2087,13 @@ esac
tools=
if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
- tools="qemu-img\$(EXESUF) $tools"
+ tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
if [ "$linux" = "yes" ] ; then
- tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
+ tools="qemu-nbd\$(EXESUF) $tools"
if [ "$check_utests" = "yes" ]; then
tools="check-qint check-qstring check-qdict check-qlist $tools"
tools="check-qfloat check-qjson $tools"
fi
- elif test "$mingw32" = "yes" ; then
- tools="qemu-io\$(EXESUF) $tools"
fi
fi
echo "TOOLS=$tools" >> $config_host_mak