aboutsummaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-01-21 09:36:15 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-01-21 09:36:15 +0000
commit90982529fcdccd9fcc2c54b7a24a313a262a4b0b (patch)
tree6806107fcaeb7589abd52eba748e41d683e15243 /buildconf
parentaba51d6b60822f356f9a56080719f2617a9a94e3 (diff)
automake 1.5 should be enough
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf8
1 files changed, 4 insertions, 4 deletions
diff --git a/buildconf b/buildconf
index bdcfb4962..31a1e8770 100755
--- a/buildconf
+++ b/buildconf
@@ -48,18 +48,18 @@ fi
echo "buildconf: autoheader version $ah_version (ok)"
#--------------------------------------------------------------------------
-# automake 1.6 or newer
+# automake 1.5 or newer
#
am_version=`${AUTOMAKE:-automake} --version 2>/dev/null|head -1| sed -e 's/^[^0-9]*//' -e 's/[a-z]* *$//'`
if test -z "$am_version"; then
echo "buildconf: automake not found."
- echo " You need automake version 1.6 or newer installed."
+ echo " You need automake version 1.5 or newer installed."
exit 1
fi
IFS=.; set $am_version; IFS=' '
-if test "$1" = "1" -a "$2" -lt "6" || test "$1" -lt "1"; then
+if test "$1" = "1" -a "$2" -lt "5" || test "$1" -lt "1"; then
echo "buildconf: automake version $am_version found."
- echo " You need automake version 1.6 or newer installed."
+ echo " You need automake version 1.5 or newer installed."
echo " If you have a sufficient automake installed, but it"
echo " is not named 'autommake', then try setting the"
echo " AUTOMAKE environment variable."