summaryrefslogtreecommitdiffstats
path: root/bootstrap
diff options
context:
space:
mode:
authorRĂ©mi Denis-Courmont <remi.denis-courmont@nokia.com>2009-12-09 13:35:37 +0200
committerMarcel Holtmann <marcel@holtmann.org>2009-12-10 15:55:49 +0100
commitda4d8916f40437de4897a68c4b00df5ac71e6aef (patch)
treea526c0b6a7aa41032cecf7fafa113ae081379d1d /bootstrap
parent70e1d47baa1bd15d0fe54b9092d237cadff625fe (diff)
downloadofono-da4d8916f40437de4897a68c4b00df5ac71e6aef.tar.bz2
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.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap7
1 files changed, 4 insertions, 3 deletions
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
+