summaryrefslogtreecommitdiff
path: root/docs/aclocal.m4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-03-11 15:57:45 +0000
committerGerald W. Carter <jerry@samba.org>2008-04-23 08:46:17 -0500
commitfedcbe8f083f67b3689327bceb9a578175eef625 (patch)
treea8403b50731b2fe2646d59d4e038e3e54f4d937b /docs/aclocal.m4
parent2f5e431faf6f8552a706f7245b85bf06c48e4bf7 (diff)
downloadsamba-fedcbe8f083f67b3689327bceb9a578175eef625.tar.gz
samba-fedcbe8f083f67b3689327bceb9a578175eef625.tar.bz2
samba-fedcbe8f083f67b3689327bceb9a578175eef625.zip
- Be a bit more verbose.
- Try some more possibilities when looking for 3.0 sources. - Fix "make files" (This used to be commit 0e33ad6b3b45a95868c64a80ff9e1e97ebe51c16)
Diffstat (limited to 'docs/aclocal.m4')
-rw-r--r--docs/aclocal.m44
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/aclocal.m4 b/docs/aclocal.m4
index ec451a4968..a1d85ef5c4 100644
--- a/docs/aclocal.m4
+++ b/docs/aclocal.m4
@@ -44,6 +44,7 @@ dnl arg3: variable to store found path in
dnl arg4: target that requires it
AC_DEFUN(DOCS_TARGET_REQUIRE_DIR, [
+ AC_MSG_CHECKING([for $2])
AC_SUBST($3)
for I in $1;
do
@@ -56,5 +57,8 @@ AC_DEFUN(DOCS_TARGET_REQUIRE_DIR, [
else
$4_REQUIRES="$$4_REQUIRES $3"
fi
+ AC_MSG_RESULT([not found])
+ else
+ AC_MSG_RESULT([found in $$3])
fi
])