- Andreas Farber made the 'buildconf' script check for the presence of m4

scripts to make it detect a bad checkout earlier. People with older
  checkouts who don't do cvs update with the -d option won't get the new dirs
  and then will get funny outputs that can be a bit hard to understand and
  fix.
This commit is contained in:
Daniel Stenberg
2009-03-09 09:24:31 +00:00
parent a9a03b9708
commit c86c294f55
3 changed files with 13 additions and 1 deletions

View File

@@ -294,6 +294,11 @@ done
echo "buildconf: running libtoolize"
$libtoolize --copy --automake --force || die "The libtoolize command failed"
if test ! -f m4/curl-functions.m4; then
echo "buildconf: cURL m4 macros not found"
exit 1
fi
echo "buildconf: running aclocal"
${ACLOCAL:-aclocal} -I m4 $ACLOCAL_FLAGS || die "The aclocal command line failed"