check for glibtoolize
This commit is contained in:
parent
7630120869
commit
8537ee876c
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue