[Qemu-devel] Subject: [PATCH] Make python mandatory

2011-12-30 Thread Sebastian Herbszt
Make python mandatory. Signed-off-by: Sebastian Herbszt herb...@gmx.de --- configure | 12 +--- 1 files changed, 5 insertions(+), 7 deletions(-) diff --git a/configure b/configure index 640e815..6c2a1b4 100755 --- a/configure +++ b/configure @@ -1185,13 +1185,11 @@ if test $solaris =

Re: [Qemu-devel] Subject: [PATCH] Make python mandatory

2011-12-30 Thread Peter Maydell
On 30 December 2011 23:59, Sebastian Herbszt herb...@gmx.de wrote: Make python mandatory. +if has $python; then +  : +else +  echo Python not found. Use --python=/path/to/python +  exit 1  fi  if test -z $target_list ; then I know you've just removed the outer condition here, but while

Re: [Qemu-devel] Subject: [PATCH] Make python mandatory

2011-12-30 Thread Sebastian Herbszt
Peter Maydell wrote: On 30 December 2011 23:59, Sebastian Herbszt herb...@gmx.de wrote: Make python mandatory. +if has $python; then + : +else + echo Python not found. Use --python=/path/to/python + exit 1 fi if test -z $target_list ; then I know you've just removed the outer condition