#!/bin/sh

if aclocal -I ./maint/config && autoheader && autoconf ; then
	echo "configure script successfully regenerated"
else
	echo "some part of configure regeneration failed"
        exit 1
fi
