#! /bin/sh

if test "X$1" = X--force; then
   set -x
   set -e
   scripts/bootstrap.versionmerge configure.in
   
   # if there are no changes, copy the original file back so that the timestamp stays the same
   # diff configure.in configure.in~ || cp -p configure.in~ configure.in
   autoreconf -I /usr/local/share/aclocal/ 
else
   echo "You don't need to run bootstrap. Just run \"configure ; make\" "
fi
