diff --git a/autogen.sh b/autogen.sh index f89104d..6975cdd 100755 --- a/autogen.sh +++ b/autogen.sh @@ -42,6 +42,18 @@ echo "PACKAGE_SOURCE=$PACKAGE_SOURCE" >> $out/revision echo "m4_define([SVN_REVISION], $PACKAGE_REVISION)" > $out/revision.m4 echo "m4_define([SVN_URL], $PACKAGE_SOURCE)" >> $out/revision.m4 +aclocal +if test $? != 0 ; then + echo "aclocal failed." + exit -1 +fi + +autoconf +if test $? != 0 ; then + echo "autoconf failed." + exit -1 +fi + echo "Package set to revision $PACKAGE_REVISION and source $PACKAGE_SOURCE" echo "./configure to setup" -- libgit2 0.21.2