Skip to content

Commit

Permalink
Updating bootstrap files - apparently autoconf is supposed to run
Browse files Browse the repository at this point in the history
after automake, and doing it the other way around can cause problems
  • Loading branch information
roystgnr committed Nov 9, 2010
1 parent 132d691 commit a57b83c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bootstrap
Expand Up @@ -34,21 +34,21 @@ rm -f config.cache acconfig.h

echo "- aclocal. (local)" && \
aclocal -I m4 -I m4/common && \
echo "- autoconf." && \
autoconf && \
echo "- autoheader." && \
autoheader && \

if type glibtoolize >/dev/null 2>&1; then
echo "- glibtool."
glibtoolize --automake
glibtoolize --automake --copy --force
else
echo "- libtool."
libtoolize --automake
libtoolize --automake --copy --force
fi

echo "- automake." && \
automake --add-missing --copy && \
echo "- autoconf." && \
autoconf && \
exit 0

exit 1

0 comments on commit a57b83c

Please sign in to comment.