[asterisk-commits] trunk r22327 - /trunk/bootstrap.sh
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Mon Apr 24 14:32:41 MST 2006
Author: russell
Date: Mon Apr 24 16:32:41 2006
New Revision: 22327
URL: http://svn.digium.com/view/asterisk?rev=22327&view=rev
Log:
check for automake before aclocal, so that the error message says automake
is missing instead of aclocal, since that's where aclocal comes from
Modified:
trunk/bootstrap.sh
Modified: trunk/bootstrap.sh
URL: http://svn.digium.com/view/asterisk/trunk/bootstrap.sh?rev=22327&r1=22326&r2=22327&view=diff
==============================================================================
--- trunk/bootstrap.sh (original)
+++ trunk/bootstrap.sh Mon Apr 24 16:32:41 2006
@@ -12,10 +12,10 @@
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 @@
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
More information about the asterisk-commits
mailing list