# Exit on error:
set -e

wget http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.xz
tar xf autoconf-2.69.tar.xz
cd autoconf-2.69.tar.xz

./configure \
    --prefix=/usr
make
make install

cd ..
exit 0
