aboutsummaryrefslogtreecommitdiffstats
path: root/macros/autogen.sh
diff options
context:
space:
mode:
authorRadek Doulik <rodo@src.gnome.org>2002-11-01 23:06:20 +0800
committerRadek Doulik <rodo@src.gnome.org>2002-11-01 23:06:20 +0800
commit29f8799d6648986b85447ffebfd496ed6f3f7b63 (patch)
treef9b75c764c2057d9a145e7d026d5af7b7a3d5c52 /macros/autogen.sh
parent8ae8cb35257f42c905c86eb424759fdfde97eb41 (diff)
downloadgsoc2013-evolution-29f8799d6648986b85447ffebfd496ed6f3f7b63.tar
gsoc2013-evolution-29f8799d6648986b85447ffebfd496ed6f3f7b63.tar.gz
gsoc2013-evolution-29f8799d6648986b85447ffebfd496ed6f3f7b63.tar.bz2
gsoc2013-evolution-29f8799d6648986b85447ffebfd496ed6f3f7b63.tar.lz
gsoc2013-evolution-29f8799d6648986b85447ffebfd496ed6f3f7b63.tar.xz
gsoc2013-evolution-29f8799d6648986b85447ffebfd496ed6f3f7b63.tar.zst
gsoc2013-evolution-29f8799d6648986b85447ffebfd496ed6f3f7b63.zip
moving gnome-2-port branch to HEAD
svn path=/trunk/; revision=18482
Diffstat (limited to 'macros/autogen.sh')
-rw-r--r--macros/autogen.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/macros/autogen.sh b/macros/autogen.sh
index 4f57a71aeb..71f7dfcf92 100644
--- a/macros/autogen.sh
+++ b/macros/autogen.sh
@@ -69,7 +69,7 @@ fi
# }
#}
-(automake-1.4 --version) < /dev/null > /dev/null 2>&1 || {
+(automake --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "**Error**: You must have \`automake' installed to compile $PKG_NAME."
echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz"
@@ -80,7 +80,7 @@ fi
# if no automake, don't bother testing for aclocal
-test -n "$NO_AUTOMAKE" || (aclocal-1.4 --version) < /dev/null > /dev/null 2>&1 || {
+test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "**Error**: Missing \`aclocal'. The version of \`automake'"
echo "installed doesn't appear recent enough."
@@ -172,10 +172,10 @@ do
libtoolize --force --copy
fi
fi
- echo "Running aclocal-1.4 $aclocalinclude ..."
- aclocal-1.4 $aclocalinclude || {
+ echo "Running aclocal $aclocalinclude ..."
+ aclocal $aclocalinclude || {
echo
- echo "**Error**: aclocal-1.4 failed. This may mean that you have not"
+ echo "**Error**: aclocal failed. This may mean that you have not"
echo "installed all of the packages you need, or you may need to"
echo "set ACLOCAL_FLAGS to include \"-I \$prefix/share/aclocal\""
echo "for the prefix where you installed the packages whose"
@@ -187,9 +187,9 @@ do
echo "Running autoheader..."
autoheader || { echo "**Error**: autoheader failed."; exit 1; }
fi
- echo "Running automake-1.4 --gnu $am_opt ..."
- automake-1.4 --add-missing --gnu $am_opt ||
- { echo "**Error**: automake-1.4 failed."; exit 1; }
+ echo "Running automake --gnu $am_opt ..."
+ automake --add-missing --gnu $am_opt ||
+ { echo "**Error**: automake failed."; exit 1; }
echo "Running autoconf ..."
autoconf || { echo "**Error**: autoconf failed."; exit 1; }
) || exit 1