From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcelo Tosatti Subject: Re: [PATCH 20/24] Only print kvm options when kvm is enabled Date: Fri, 18 Sep 2009 16:42:08 -0300 Message-ID: <20090918194208.GA16767@amt.cnet> References: <0b05c78881f51eb26727b5eece124a0164557ab5.1253272938.git.quintela@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: kvm@vger.kernel.org To: Juan Quintela Return-path: Received: from mx1.redhat.com ([209.132.183.28]:23607 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752716AbZIRT5q (ORCPT ); Fri, 18 Sep 2009 15:57:46 -0400 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n8IJvokA007831 for ; Fri, 18 Sep 2009 15:57:50 -0400 Content-Disposition: inline In-Reply-To: <0b05c78881f51eb26727b5eece124a0164557ab5.1253272938.git.quintela@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: On Fri, Sep 18, 2009 at 01:41:31PM +0200, Juan Quintela wrote: > > Signed-off-by: Juan Quintela > --- > configure | 8 +++++--- > 1 files changed, 5 insertions(+), 3 deletions(-) > > diff --git a/configure b/configure > index 9598331..91246a1 100755 > --- a/configure > +++ b/configure > @@ -1881,9 +1881,11 @@ echo "IO thread $io_thread" > echo "Linux AIO support $linux_aio" > echo "Install blobs $blobs" > echo "KVM support $kvm" > -echo "KVM PIT support $kvm_cap_pit" > -echo "KVM device assig. $kvm_cap_device_assignment" > -echo "KVM trace support $kvm_trace" > +if test "$kvm" = "yes" ; then > + echo " PIT support $kvm_cap_pit" > + echo " device assignment $kvm_cap_device_assignment" > + echo " trace support $kvm_trace" > +fi "KVM xxx support" is informative.