summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorOron Peled" <oron@actcom.co.il>2009-08-01 17:18:12 (GMT)
committerOron Peled" <oron@actcom.co.il>2009-08-01 17:18:12 (GMT)
commitc0483fc7ec4a0b6ecfaa3d8b5ccc27a8a2a11fde (patch)
tree746b23834f3c65a8168585dba9404c22cd9a1263 /configure
parentea31afdf04dd524ab57e8f8fb6c515fcc45bafbe (diff)
[configure] Fix automake version check.
The configure script fails on automake-1.11 (in Fedora-11) since it looks for 3-digit version number. Patch fixed by "Yann E. MORIN", with the added comment: The check for the automake version is not against a 3-digit number, but really against a 3-part version number, a-la 'x.y.z'. Versions such as 1.10 and 1.11 are also valid.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 4770422..71787a4 100755
--- a/configure
+++ b/configure
@@ -332,7 +332,7 @@ has_or_abort prog=bison
has_or_abort prog=flex
has_or_abort prog=makeinfo
has_or_abort prog=automake \
- ver='\(GNU automake\) (1\.[[:digit:]]{2,}\.|[2-9][[:digit:]]*\.)' \
+ ver='\(GNU automake\) (1\.[[:digit:]]{2,}|[2-9][[:digit:]]*\.)' \
err="'automake' 1.10 or above was not found"
has_or_abort prog=libtool \
ver='\(GNU libtool.*\) (2[[:digit:]]*\.|1\.6[[:digit:]]*\.|1\.5\.[2-9][[:digit:]]+)' \