aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-24 17:34:35 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-24 17:34:35 +0000
commite196b45892e129c7e3e877d4749b786c2cd8c2ee (patch)
treeafa0e80c3088ef39ee3bb999d78200a1ad987da0 /bootstrap.sh
parent25c6011e2338956666a602ceb1942ecc7d29781a (diff)
print a message before running the autotools
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@22272 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index 02392eb5c..9bf8377d1 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -16,7 +16,7 @@ then
check_for_app autoconf259
check_for_app autoheader259
check_for_app automake19
-
+ echo "Generating the configure script ..."
aclocal19 2>/dev/null
autoconf259
autoheader259
@@ -29,9 +29,11 @@ else
check_for_app autoconf
check_for_app autoheader
check_for_app automake
-
+ echo "Generating the configure script ..."
aclocal 2>/dev/null
autoconf
autoheader
automake --add-missing --copy 2>/dev/null
fi
+
+exit 0