#!/bin/sh
run ()
{
echo "running: $*"
eval $*
if test $? != 0 ; then
echo "error: while running '$*'"
exit 1
fi
}
run aclocal
#run autoheader
run libtoolize -f
run automake -a
run autoconf
personal git repositories of Harald Welte. Your mileage may vary