From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:52637) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rgwu4-0003SM-Dz for qemu-devel@nongnu.org; Sat, 31 Dec 2011 06:15:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rgwu2-0005AZ-Oo for qemu-devel@nongnu.org; Sat, 31 Dec 2011 06:15:08 -0500 Received: from mailout-de.gmx.net ([213.165.64.23]:52112) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1Rgwu2-00059E-Bi for qemu-devel@nongnu.org; Sat, 31 Dec 2011 06:15:06 -0500 In-Reply-To: Date: Sat, 31 Dec 2011 12:14:47 +0100 References: <5DE30B86318741F8B2D56EA407C5A8DB@FSCPC> <4EFE4483.1010707@weilnetz.de> <1325289569$267@local> Message-Id: <1325330087$3142@local> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit From: Sebastian Herbszt Subject: [Qemu-devel] [PATCH V2] Make python mandatory List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Weil , Peter Maydell 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 -- 1.7.3.4