aboutsummaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-03-09 09:24:31 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-03-09 09:24:31 +0000
commitc86c294f554b901754e8ec97ae5399b7f217b9ba (patch)
tree8f0f89ad61765d9b3b80d806406e195c933eef1c /buildconf
parenta9a03b9708bc4f11c7178248fe14de413205c787 (diff)
- 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.
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf5
1 files changed, 5 insertions, 0 deletions
diff --git a/buildconf b/buildconf
index cf7770823..c6518552e 100755
--- a/buildconf
+++ b/buildconf
@@ -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"