Make python mandatory

The QEMU build depends on Python so make it an explicit requirement.

Reviewed-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
Sebastian Herbszt 2011-12-31 12:14:47 +01:00 committed by Stefan Hajnoczi
parent a46667ea29
commit 7a3fc891ae
1 changed files with 3 additions and 7 deletions

10
configure vendored
View File

@ -1197,13 +1197,9 @@ if test "$solaris" = "yes" ; then
fi
fi
if test "$guest_agent" != "no" ; then
if has $python; then
:
else
echo "Python not found. Use --python=/path/to/python"
exit 1
fi
if ! has $python; then
echo "Python not found. Use --python=/path/to/python"
exit 1
fi
if test -z "$target_list" ; then