https://svn.lrde.epita.fr/svn/nolimips/trunk
Yes, `libtoolize' is called... `glibtoolize' on Mac OS X (10.5).
Index: ChangeLog
from Roland Levillain <roland(a)lrde.epita.fr>
* bootstrap: Help autoreconf find a valid libtoolize.
bootstrap | 13 +++++++++++++
1 file changed, 13 insertions(+)
Index: bootstrap
--- bootstrap (revision 218)
+++ bootstrap (working copy)
@@ -231,6 +231,19 @@
find tests -name '*.ref' -exec touch '{}' ';'
+# Help autoreconf find a valid libtoolize.
+
+libtoolize=libtoolize
+for l in "$LIBTOOLIZE" glibtoolize libtoolize;
+do
+ if ($l --version) >/dev/null 2>&1; then
+ libtoolize=$l
+ break
+ fi
+done
+export LIBTOOLIZE=$libtoolize
+
+
# Reconfigure, getting other files.
echo "$0: autoreconf --verbose --install --force ..."