libtoolize is called glibtoolize on Mac OS X

This commit is contained in:
Tobias Brunner
2009-05-06 09:10:58 -04:00
parent a8d938ca18
commit af05cc564c
+14 -1
View File
@@ -1,5 +1,18 @@
#!/bin/sh
libtoolize --force &&
LIBTOOLIZE=`which glibtoolize 2>/dev/null`
case "$LIBTOOLIZE" in
/* ) ;;
* ) LIBTOOLIZE=`which libtoolize 2>/dev/null`
case "$LIBTOOLIZE" in
/* ) ;;
* ) LIBTOOLIZE=libtoolize
;;
esac
;;
esac
$LIBTOOLIZE --force &&
aclocal &&
automake -a &&
autoconf