summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbootstrap13
1 files changed, 5 insertions, 8 deletions
diff --git a/bootstrap b/bootstrap
index 731fa44..b953ba7 100755
--- a/bootstrap
+++ b/bootstrap
@@ -3,16 +3,13 @@
UNAME=`uname`
if [ "$UNAME" = "Darwin" ]; then
-libtoolize --copy --force --automake
-aclocal-1.9
-autoheader-2.60
-automake-1.9 --add-missing --copy --foreign
-autoconf-2.60
-
+ LIBTOOLIZE=glibtoolize
else
-libtoolize --copy --force --automake
+ LIBTOOLIZE=libtoolize
+fi
+
+$LIBTOOLIZE --copy --force --automake
aclocal
autoheader
automake --add-missing --copy --foreign
autoconf
-fi