From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:38171) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RgmN3-0004FL-4k for qemu-devel@nongnu.org; Fri, 30 Dec 2011 19:00:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RgmN1-0005m7-RI for qemu-devel@nongnu.org; Fri, 30 Dec 2011 19:00:21 -0500 Received: from mailout-de.gmx.net ([213.165.64.22]:37503) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1RgmN1-0005lz-CW for qemu-devel@nongnu.org; Fri, 30 Dec 2011 19:00:19 -0500 In-Reply-To: <4EFE4483.1010707@weilnetz.de> Date: Sat, 31 Dec 2011 00:59:29 +0100 References: <5DE30B86318741F8B2D56EA407C5A8DB@FSCPC> <4EFE4483.1010707@weilnetz.de> Message-Id: <1325289569$267@local> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit From: Sebastian Herbszt Subject: [Qemu-devel] Subject: [PATCH] Make python mandatory List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Weil Make python mandatory. Signed-off-by: Sebastian Herbszt --- 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" = "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 + : +else + echo "Python not found. Use --python=/path/to/python" + exit 1 fi if test -z "$target_list" ; then -- 1.7.3.4