Skip to content

Commit

Permalink
check for automake before aclocal, so that the error message says aut…
Browse files Browse the repository at this point in the history
…omake

is missing instead of aclocal, since that's where aclocal comes from


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@22327 65c4cc65-6c06-0410-ace0-fbb531ad65f3
  • Loading branch information
russellb committed Apr 24, 2006
1 parent b2d355d commit ed2918c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit ed2918c

Please sign in to comment.