aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-24 21:32:41 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-24 21:32:41 +0000
commit0e5e437fe6857f2713a2d0947cbbaae53c022a8b (patch)
tree21fec7c8a0d5bcbcfaf8d27a1984c894e20b84a9 /bootstrap.sh
parent0d2f9d54cd5813c8e24d843541caa2fb67cfd7b7 (diff)
check for automake before aclocal, so that the error message says automake
is missing instead of aclocal, since that's where aclocal comes from git-svn-id: http://svn.digium.com/svn/asterisk/trunk@22327 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index 9bf8377d1..ce06929e0 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -12,10 +12,10 @@ check_for_app() {
uname -s | grep -q FreeBSD
if [ $? = 0 ]
then
- check_for_app aclocal19
check_for_app autoconf259
check_for_app autoheader259
check_for_app automake19
+ check_for_app aclocal19
echo "Generating the configure script ..."
aclocal19 2>/dev/null
autoconf259
@@ -25,10 +25,10 @@ else
export AUTOCONF_VERSION=2.59
export AUTOMAKE_VERSION=1.9
- check_for_app aclocal
check_for_app autoconf
check_for_app autoheader
check_for_app automake
+ check_for_app aclocal
echo "Generating the configure script ..."
aclocal 2>/dev/null
autoconf