Running newer versions of autoconf tools on CentOS 5

Today I had to compile a program that needed a newer version of the Autoconf suite than is available on CentOS 5. I got around this like so:

for i in /usr/bin/auto*2.6x ; do
    ln -s $i ~/$(basename $i | sed -e's/2.6x//g')
done

Walla.