Commit 3dd1f8ef0fb7f52414acecf15656fca6ced626fd
1 parent
e3aff4f6
Disable qemu-io on Win32
It breaks the build. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6996 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
2 additions
and
2 deletions
configure
... | ... | @@ -1551,9 +1551,9 @@ esac |
1551 | 1551 | |
1552 | 1552 | tools= |
1553 | 1553 | if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then |
1554 | - tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools" | |
1554 | + tools="qemu-img\$(EXESUF) $tools" | |
1555 | 1555 | if [ "$linux" = "yes" ] ; then |
1556 | - tools="qemu-nbd\$(EXESUF) $tools" | |
1556 | + tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools" | |
1557 | 1557 | fi |
1558 | 1558 | fi |
1559 | 1559 | echo "TOOLS=$tools" >> $config_mak | ... | ... |