From da4d8916f40437de4897a68c4b00df5ac71e6aef Mon Sep 17 00:00:00 2001 From: RĂ©mi Denis-Courmont Date: Wed, 9 Dec 2009 13:35:37 +0200 Subject: 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. --- bootstrap | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'bootstrap') diff --git a/bootstrap b/bootstrap index 053f5c8f..a71f1d65 100755 --- a/bootstrap +++ b/bootstrap @@ -2,6 +2,7 @@ aclocal && \ autoheader && \ - libtoolize --automake --copy --force && - automake --add-missing --copy && \ - autoconf + libtoolize --automake --copy --force && \ + autoconf && \ + automake --add-missing --copy + -- cgit v1.2.3