Bootstrap version check error
Status: Abandoned
Brought to you by:
max_mv
in the bootstrap file, there are this lines:
if test -z "`automake --version 2>&1|head -n 1|egrep '1.[7-9]'`"; then
echo "Automake 1.7 or above is required. Aborting build...";
exit 1;
fi
It should at least be changed to this:
if test -z "`automake --version 2>&1|head -n 1|egrep '1.[7-901]'`"; then
echo "Automake 1.7 or above is required. Aborting build...";
exit 1;
fi
because the latest automake version is 1.10.1
which returns this version info:
automake (GNU automake) 1.10.1