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.
wavecom
Rémi Denis-Courmont 14 years ago committed by Marcel Holtmann
parent 70e1d47baa
commit da4d8916f4

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

Loading…
Cancel
Save