[libvirt] [PATCH] autobuild.sh: provide default prefix

2010-04-30 Thread Eric Blake
Without this patch and with a clean environment, ./autobuild.sh tried to use ./configure --prefix=/, and fails. * autobuild.sh (AUTOBUILD_INSTALL_ROOT): Provide sensible default. Suggested by Daniel P. Berrange. --- autobuild.sh |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff

Re: [libvirt] [PATCH] autobuild.sh: provide default prefix

2010-04-30 Thread Daniel P. Berrange
On Fri, Apr 30, 2010 at 10:58:24AM -0600, Eric Blake wrote: Without this patch and with a clean environment, ./autobuild.sh tried to use ./configure --prefix=/, and fails. * autobuild.sh (AUTOBUILD_INSTALL_ROOT): Provide sensible default. Suggested by Daniel P. Berrange. --- autobuild.sh

Re: [libvirt] [PATCH] autobuild.sh: provide default prefix

2010-04-30 Thread Eric Blake
On 04/30/2010 11:07 AM, Daniel P. Berrange wrote: +++ b/autobuild.sh @@ -6,6 +6,7 @@ set -v # Make things clean. test -n $1 RESULTS=$1 || RESULTS=results.log +: ${AUTOBUILD_INSTALL_ROOT=$HOME/builder} test -f Makefile make -k distclean || : rm -rf coverage ACK Pushed. Looks

Re: [libvirt] [PATCH] autobuild.sh: provide default prefix

2010-04-30 Thread Daniel Veillard
On Fri, Apr 30, 2010 at 11:20:58AM -0600, Eric Blake wrote: On 04/30/2010 11:07 AM, Daniel P. Berrange wrote: +++ b/autobuild.sh @@ -6,6 +6,7 @@ set -v # Make things clean. test -n $1 RESULTS=$1 || RESULTS=results.log +: ${AUTOBUILD_INSTALL_ROOT=$HOME/builder} test -f Makefile