Skip to content

Commit 889076e

Browse files
committed
Remove libtoolize from autogen
We don't need libtool support, so remove libtoolize from the autogen script (and create build-aux to prevent errors when installing missing components required by automake). Signed-off-by: Claudio Matsuoka <[email protected]>
1 parent bba4b7b commit 889076e

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

autogen.sh

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
11
#!/bin/sh
22

3-
if `which libtoolize` ; then
4-
libtoolize
5-
# on, e.g., Darwin
6-
elif `which glibtoolize` ; then
7-
glibtoolize
8-
else
9-
echo "libtoolize not found!"
10-
exit 1
11-
fi
12-
3+
mkdir -p build-aux
134
aclocal
145
autoconf
156
automake --add-missing

0 commit comments

Comments
 (0)