# Exit on error:
set -e

wget http://ftpmirror.gnu.org/which/which-2.20.tar.gz
tar xf which-2.20.tar.gz
cd which-2.20

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
