From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Mueller Subject: Re: [ANNOUNCE] qemu-kvm-0.11.0-rc1 Date: Thu, 6 Aug 2009 09:31:48 +0000 (UTC) Message-ID: References: <4A75BF82.60005@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To: kvm@vger.kernel.org Return-path: Received: from main.gmane.org ([80.91.229.2]:60493 "EHLO ciao.gmane.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751246AbZHFJcB (ORCPT ); Thu, 6 Aug 2009 05:32:01 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MYzKJ-0006Do-OI for kvm@vger.kernel.org; Thu, 06 Aug 2009 09:31:59 +0000 Received: from 193.108.233.65 ([193.108.233.65]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 06 Aug 2009 09:31:59 +0000 Received: from thomas by 193.108.233.65 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 06 Aug 2009 09:31:59 +0000 Sender: kvm-owner@vger.kernel.org List-ID: On Sun, 02 Aug 2009 19:32:02 +0300, Avi Kivity wrote: > Paralleling the qemu upstream 0.11 release cycle, qemu-kvm-0.11.0-rc1 is > now available. qemu-kvm-0.11.0-rc1 can be used with kvm kernel modules > from your distribution kernel, or with the modules provided by the > kvm-kmod package. > > Please test it out and report bugs, so we can have a stable > qemu-kvm-0.10.0 release. "make clean" fails if not done a "./configure" before. the debian build process first does a "make clean" before doing anything - so it fails building the package because of this. debian:/tmp/qemu-kvm-0.11.0-rc1# make clean rm -f config.mak config.h op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc- arm.h gen-op-arm.h rm -f *.o *.d *.a TAGS cscope.* *.pod *~ */*~ rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d rm -f qemu-img-cmds.h make -C tests clean make[1]: Entering directory `/tmp/qemu-kvm-0.11.0-rc1/tests' rm -f *~ *.o test-i386.out test-i386.ref \ test-x86_64.log test-x86_64.ref qruncom sha1 make[1]: Leaving directory `/tmp/qemu-kvm-0.11.0-rc1/tests' for d in libhw32 libhw64; do \ make -C $d clean || exit 1 ; \ done make: *** libhw32: No such file or directory. Stop. make: *** [clean] Error 1 - Thomas