From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark McLoughlin Subject: [PATCH] configure: make default KVM_VERSION qemu-kvm-devel Date: Mon, 10 Aug 2009 10:39:22 +0100 Message-ID: <1249897162.8784.66.camel@blaa> References: <4A7C1E96.3060200@redhat.com> <4A7E9DA9.3060204@redhat.com> <1249895994.8784.47.camel@blaa> Reply-To: Mark McLoughlin Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Cc: Chris Lalancette , kvm@vger.kernel.org To: Avi Kivity Return-path: Received: from mx2.redhat.com ([66.187.237.31]:45035 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752840AbZHJJkH (ORCPT ); Mon, 10 Aug 2009 05:40:07 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n7A9e81L005910 for ; Mon, 10 Aug 2009 05:40:08 -0400 In-Reply-To: <1249895994.8784.47.camel@blaa> Sender: kvm-owner@vger.kernel.org List-ID: Released versions of qemu-kvm now have a KVM_VERSION of either qemu-kvm-x.y.z or qemu-kvm-devel-XX. However, when building from git, KVM_VERSION is kvm-devel. Defaulting to qemu-kvm-devel makes more sense. With newer versions of qemu-kvm, libvirt actually ignores the kvm snapshot number (i.e. 86, 87 etc.) and just uses the 'qemu-kvm-' string to detect that this is the kvm fork of qemu. The actual kvm snapshot number is no longer important, it's the qemu version number which is important. Signed-off-by: Mark McLoughlin --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 62028ca..cf8c4e6 100755 --- a/configure +++ b/configure @@ -166,7 +166,7 @@ kvm_version() { if test -f "$fname"; then cat "$fname" else - echo "kvm-devel" + echo "qemu-kvm-devel" fi } -- 1.6.2.5