Patch #2258 2007-11-27 11:57

bgolding

Fix bootstrap detection of automake 1.6.3
Download
2258-Fix_bootstrap.patch (450 bytes)
Category
 
Status
Accepted
Close date
2007-12-08 10:09
Assigned to
 
Fix: remove the $ character from the regexp on this line of 'bootstrap' script:

  if test -n "`$AUTOMAKE --version 2>&1|head -n 1|egrep '1\.[0-6]$'`"; then

----
Explanation:

The pattern is assuming a version number like "1.6" but is fooled by "1.6.3", so it tries to continue with this old automake version and fails later in a non-obvious fashion.

With my fix, it exits correctly and prints "Automake 1.7 or above is required. Aborting build..."
biplab 2007-12-08 10:09

This patch has been applied couple of days back.