Skip to content

Commit

Permalink
prefer glibtoolize over libtoolize
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoechtrager committed Oct 18, 2014
1 parent ab742fe commit eccd4cc
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion cctools/autogen.sh
Expand Up @@ -11,5 +11,14 @@ fi
mkdir -p m4
aclocal
autoconf
libtoolize -c -i

which glibtoolize &>/dev/null

if [ $? -eq 0 ]; then
glibtoolize -c -i
else
libtoolize -c -i
fi

automake -a -c

0 comments on commit eccd4cc

Please sign in to comment.