summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-01-26 20:40:52 +0100
committerSlávek Banko <slavek.banko@axis.cz>2021-01-27 16:14:14 +0100
commit2b95fab61eccf20f0cd93b03a63a260a784f3507 (patch)
tree3f3915541323cb26c9b1c8dab7b91c77b11e5de8
parentbb60143a03d7d39b35d689d425ddfe0561ac5972 (diff)
downloadadmin-2b95fab61eccf20f0cd93b03a63a260a784f3507.tar.gz
admin-2b95fab61eccf20f0cd93b03a63a260a784f3507.zip
Add support for autoconf + autoheader 2.7x.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit c23f9f693475149602b052e66e7e9d9e726e299f)
-rw-r--r--cvs.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/cvs.sh b/cvs.sh
index 0f8ce8d..478dbdd 100644
--- a/cvs.sh
+++ b/cvs.sh
@@ -25,7 +25,7 @@ check_autotool_versions()
required_autoconf_version="2.53 or newer"
AUTOCONF_VERSION=`$AUTOCONF --version | head -n 1`
case $AUTOCONF_VERSION in
- Autoconf*2.5* | autoconf*2.5* | autoconf*2.6* ) : ;;
+ Autoconf*2.5* | autoconf*2.[567]* ) : ;;
"" )
echo "*** AUTOCONF NOT FOUND!."
echo "*** TDE requires autoconf $required_autoconf_version"
@@ -40,7 +40,7 @@ esac
AUTOHEADER_VERSION=`$AUTOHEADER --version | head -n 1`
case $AUTOHEADER_VERSION in
- Autoconf*2.5* | autoheader*2.5* | autoheader*2.6* ) : ;;
+ Autoconf*2.5* | autoheader*2.[567]* ) : ;;
"" )
echo "*** AUTOHEADER NOT FOUND!."
echo "*** TDE requires autoheader $required_autoconf_version"