From patchwork Fri Dec 30 23:59:29 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Herbszt X-Patchwork-Id: 133704 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 E4336B6FCA for ; Sat, 31 Dec 2011 11:00:33 +1100 (EST) Received: from localhost ([::1]:55426 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RgmN8-0004FQ-Rn for incoming@patchwork.ozlabs.org; Fri, 30 Dec 2011 19:00:26 -0500 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 Received: (qmail invoked by alias); 31 Dec 2011 00:00:12 -0000 Received: from f052157190.adsl.alicedsl.de (HELO opensuse112) [78.52.157.190] by mail.gmx.net (mp062) with SMTP; 31 Dec 2011 01:00:12 +0100 X-Authenticated: #310364 X-Provags-ID: V01U2FsdGVkX19V3Lxx2+pVmI7IIDgl80D4lAk+2h94SR48z0310/ BP5p/5McrqMScW In-Reply-To: <4EFE4483.1010707@weilnetz.de> X-Mailer: gregkh_patchbomb modified 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 To: qemu-devel@nongnu.org From: Sebastian Herbszt X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 213.165.64.22 Cc: Stefan Weil Subject: [Qemu-devel] Subject: [PATCH] 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 --- 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