check for glibtoolize

This commit is contained in:
Doug MacEachern 2008-11-26 23:40:31 +00:00
parent 7630120869
commit 8537ee876c
1 changed files with 6 additions and 1 deletions

View File

@ -2,9 +2,14 @@
set -x set -x
touch INSTALL NEWS AUTHORS touch INSTALL NEWS AUTHORS
libtoolize="libtoolize"
if which glibtoolize >/dev/null 2>&1
then
libtoolize=glibtoolize
fi
autoheader \ autoheader \
&& aclocal \ && aclocal \
&& libtoolize --ltdl --copy --force \ && $libtoolize --copy --force \
&& automake --add-missing --copy \ && automake --add-missing --copy \
&& autoconf && autoconf