From patchwork Sat Dec 31 11:14:47 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Herbszt X-Patchwork-Id: 133739 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id A45EDB6FBA for ; Sat, 31 Dec 2011 22:15:17 +1100 (EST) Received: from localhost ([::1]:52429 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rgwu9-0003US-Gp for incoming@patchwork.ozlabs.org; Sat, 31 Dec 2011 06:15:13 -0500 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 Received: (qmail invoked by alias); 31 Dec 2011 11:15:03 -0000 Received: from g226052209.adsl.alicedsl.de (HELO opensuse112) [92.226.52.209] by mail.gmx.net (mp007) with SMTP; 31 Dec 2011 12:15:03 +0100 X-Authenticated: #310364 X-Provags-ID: V01U2FsdGVkX1/sUx99QlPsxxCKHSOoCJ/4sC+t8LcuUXS5pHvvmi aM286wnsOC6T9A In-Reply-To: X-Mailer: gregkh_patchbomb modified 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 To: qemu-devel@nongnu.org From: Sebastian Herbszt X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 213.165.64.23 Cc: Stefan Weil , Peter Maydell Subject: [Qemu-devel] [PATCH V2] Make python mandatory X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Make python mandatory. Signed-off-by: Sebastian Herbszt Reviewed-by: Stefan Weil --- 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