Try to avoid future regressions on the VPATH front.
* autobuild.sh: Uncomment VPATH use.
Suggested by Daniel P. Berrange.
---
Suggested in IRC; I'm still in the midst of testing it out on a fresh
git clone.
autobuild.sh | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/autobuild.sh b/autobuild.sh
index d3934ea..5861b43 100755
--- a/autobuild.sh
+++ b/autobuild.sh
@@ -10,9 +10,9 @@ test -n "$1" && RESULTS=$1 || RESULTS=results.log
test -f Makefile && make -k distclean || :
rm -rf coverage
-#rm -rf build
-#mkdir build
-#cd build
+rm -rf build
+mkdir build
+cd build
./autogen.sh --prefix="$AUTOBUILD_INSTALL_ROOT" \
--enable-test-coverage \
--
1.6.6.1