# Exit on error:
set -e

wget http://ftpmirror.gnu.org/libtool/libtool-2.4.2.tar.gz
tar xf libtool-2.4.2.tar.gz
cd libtool-2.4.2

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
