Displaying 1 result from an estimated 1 matches for "c3f7d6e".
Did you mean:
4c9f7d6e
2009 Sep 04
1
[PATCH libguestfs] avoid build-from-scratch failure due to missing daemon/configure
...gure
* bootstrap: Don't use autoreconf's --norecursive
option. We require the default --recursive behavior in order
to create daemon/configure. Reported by Matthew Booth.
---
bootstrap | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/bootstrap b/bootstrap
index c3f7d6e..60e71fd 100755
--- a/bootstrap
+++ b/bootstrap
@@ -82,5 +82,4 @@ $gnulib_tool \
--import $modules
# Disable autopoint and libtoolize, since they were already done above.
-AUTOPOINT=true LIBTOOLIZE=true \
- autoreconf --verbose --install --no-recursive
+AUTOPOINT=true LIBTOOLIZE=true auto...