# Exit on error:
set -e

wget http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.2e.tar.gz
tar xf gc-7.2e.tar.gz
cd gc-7.2

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
