On Tue, Feb 25, 2014 at 02:59:31PM +0000, Richard W.M. Jones wrote: > You have to set the following environment variable to tell it which > febootstrap to use: > > export FEBOOTSTRAP=febootstrap3
Here's a more complete answer. In your libguestfs source directory, create two files as follows: (a) localconfigure should contain: ------- source localenv # qemu is too old (< 1.0) so the qemu test will fail. export vmchannel_test=no ./autogen.sh \ --prefix /usr \ --disable-ruby \ -C \ "$@" ------- (b) localenv should contain: ------- export SUPERMIN=/usr/bin/febootstrap3 export SKIP_TEST_LAUNCH_RACE_PL=1 ------- Make sure both files are executable: chmod +x localconfigure localenv Instead of using './configure [args...]' use './localconfigure [args...]' Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-p2v converts physical machines to virtual machines. Boot with a live CD or over the network (PXE) and turn machines into KVM guests. http://libguestfs.org/virt-v2v _______________________________________________ Libguestfs mailing list [email protected] https://www.redhat.com/mailman/listinfo/libguestfs
