diff autogen.sh @ 171:c4d4a788c31b

2003-6-8 Brian Masney <masneyb@gftp.org> * aclocal.m4 - removed, this file is automatically generated * autogen.sh - just call automake and aclocal, instead of automake-1.4 and aclocal-1.4 (from Nathan Robertson <nathanr@nathanr.net>)
author masneyb
date Sun, 08 Jun 2003 16:01:39 +0000
parents a4bf947e9e22
children 3fa7b4f4ab78
line wrap: on
line diff
--- a/autogen.sh	Sun Jun 08 15:54:10 2003 +0000
+++ b/autogen.sh	Sun Jun 08 16:01:39 2003 +0000
@@ -21,8 +21,8 @@
 }
 
 have_automake=false
-if automake-1.4 --version < /dev/null > /dev/null 2>&1 ; then
-	automake_version=`automake-1.4 --version | grep 'automake (GNU automake)' | sed 's/^[^0-9]*\(.*\)/\1/'`
+if automake --version < /dev/null > /dev/null 2>&1 ; then
+	automake_version=`automake --version | grep 'automake (GNU automake)' | sed 's/^[^0-9]*\(.*\)/\1/'`
 	case $automake_version in
 	   1.2*|1.3*|1.4) 
 		;;
@@ -73,12 +73,12 @@
 
 gettextize -f -c --intl
 
-aclocal-1.4 $ACLOCAL_FLAGS
+aclocal $ACLOCAL_FLAGS
 
 # optionally feature autoheader
 (autoheader --version)  < /dev/null > /dev/null 2>&1 && autoheader
 
-automake-1.4 -a -c $am_opt
+automake -a -c $am_opt
 autoconf
 cd $ORIGDIR