# Exit on error:
set -e

wget http://ftpmirror.gnu.org/patch/patch-2.7.1.tar.bz2
tar xf patch-2.7.1.tar.bz2
cd patch-2.7.1

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
