From 7a3fc891ae3256e4fbf03b6ab6d3ced0dfaaaa27 Mon Sep 17 00:00:00 2001 From: Sebastian Herbszt Date: Sat, 31 Dec 2011 12:14:47 +0100 Subject: [PATCH] Make python mandatory The QEMU build depends on Python so make it an explicit requirement. Reviewed-by: Stefan Weil Signed-off-by: Sebastian Herbszt Signed-off-by: Stefan Hajnoczi --- configure | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/configure b/configure index a1394eb1ac..d88e3ea434 100755 --- a/configure +++ b/configure @@ -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