bootstrap: autoconf must run before automake

The other way, dependencies computation (depcomp) does not work
correctly. In fact, aclocal is the part of GNU/automake to be run
before autoconf whereas automake is the part to be run after it.
In other words, aclocal would not exist if automake could run
properly before autoconf. This ordering is consistent with most
autotools-based projects, and most authoritatively, with autoreconf.

This also adds a missing anti-slash for consistency.
This commit is contained in:
Rémi Denis-Courmont 2009-12-09 13:35:37 +02:00 committed by Marcel Holtmann
parent 70e1d47baa
commit da4d8916f4
1 changed files with 4 additions and 3 deletions

View File

@ -2,6 +2,7 @@
aclocal && \ aclocal && \
autoheader && \ autoheader && \
libtoolize --automake --copy --force && libtoolize --automake --copy --force && \
automake --add-missing --copy && \ autoconf && \
autoconf automake --add-missing --copy