summaryrefslogtreecommitdiff
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorJaume Marhuenda <jaumemarhuenda@gmail.com>2018-07-31 07:21:42 -0700
committerJames E. King III <jking@apache.org>2018-07-31 10:21:42 -0400
commite8bec2359899bbc92220cd08398cffee9a6dd1d7 (patch)
tree1b6e092bb62a6f27a6e1154be8d1782315e8ea33 /bootstrap.sh
parentdabb539d64fb303a443c7962caccc9177669ca80 (diff)
downloadthrift-e8bec2359899bbc92220cd08398cffee9a6dd1d7.tar.gz
THRIFT-4605: bootstrap.sh fails if automake=1.16.1 (#1574)
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index c7e000c49..2452eea44 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -38,10 +38,14 @@ else
exit 1
fi
+format_version () {
+ printf "%03d%03d%03d%03d" $(echo $1 | tr '.' ' ');
+}
+
# we require automake 1.13 or later
# check must happen externally due to use of newer macro
AUTOMAKE_VERSION=`automake --version | grep automake | egrep -o '([0-9]{1,}\.)+[0-9]{1,}'`
-if [ "$AUTOMAKE_VERSION" \< "1.13" ]; then
+if [ $(format_version $AUTOMAKE_VERSION) -lt $(format_version 1.13) ]; then
echo >&2 "automake version $AUTOMAKE_VERSION is too old (need 1.13 or later)"
exit 1
fi