Mailing List Archive

r1233 - trunk/varnish-cache
Author: phk
Date: 2007-01-22 09:43:30 +0100 (Mon, 22 Jan 2007)
New Revision: 1233

Modified:
trunk/varnish-cache/autogen.sh
Log:
Allow automake version 1.10


Modified: trunk/varnish-cache/autogen.sh
===================================================================
--- trunk/varnish-cache/autogen.sh 2007-01-10 13:13:50 UTC (rev 1232)
+++ trunk/varnish-cache/autogen.sh 2007-01-22 08:43:30 UTC (rev 1233)
@@ -15,13 +15,13 @@
exit 1
else
case $automake_version in
- 1.9*|[23456789].*)
- ;;
- *)
+ 0.*|1.[0-8])
echo "your version of automake ($automake_version) is too old;" \
"you need 1.9 or newer."
exit 1
;;
+ *)
+ ;;
esac
fi