From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:60193) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ri1zz-0006hg-Hn for qemu-devel@nongnu.org; Tue, 03 Jan 2012 05:53:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ri1zv-0004jP-DO for qemu-devel@nongnu.org; Tue, 03 Jan 2012 05:53:43 -0500 Date: Tue, 3 Jan 2012 10:53:27 +0000 From: Stefan Hajnoczi Message-ID: <20120103105327.GA28826@stefanha-thinkpad.localdomain> References: <5DE30B86318741F8B2D56EA407C5A8DB@FSCPC> <4EFE4483.1010707@weilnetz.de> <1325289569$267@local> <1325330087$3142@local> <4EFEF00F.1070306@weilnetz.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4EFEF00F.1070306@weilnetz.de> Subject: Re: [Qemu-devel] [Qemu-trivial] [PATCH V2] Make python mandatory List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Weil Cc: qemu-trivial , Peter Maydell , qemu-devel@nongnu.org, Sebastian Herbszt On Sat, Dec 31, 2011 at 12:20:47PM +0100, Stefan Weil wrote: > Am 31.12.2011 12:14, schrieb Sebastian Herbszt: > >Make python mandatory. > > > >Signed-off-by: Sebastian Herbszt > >--- > >configure | 10 +++------- > >1 files changed, 3 insertions(+), 7 deletions(-) > > > >diff --git a/configure b/configure > >index 640e815..a54439d 100755 > >--- a/configure > >+++ b/configure > >@@ -1185,13 +1185,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 > > Reviewed-by: Stefan Weil > > Maybe this patch can be applied via qemu-trivial. Thanks, applied to the trivial patches -next tree: https://github.com/stefanha/qemu/tree/trivial-patches-next Stefan