Skip to content

Commit 8537ee8

Browse files
committed
check for glibtoolize
1 parent 7630120 commit 8537ee8

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

autogen.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22
set -x
33

44
touch INSTALL NEWS AUTHORS
5+
libtoolize="libtoolize"
6+
if which glibtoolize >/dev/null 2>&1
7+
then
8+
libtoolize=glibtoolize
9+
fi
510

611
autoheader \
712
&& aclocal \
8-
&& libtoolize --ltdl --copy --force \
13+
&& $libtoolize --copy --force \
914
&& automake --add-missing --copy \
1015
&& autoconf

0 commit comments

Comments
 (0)