diff options
Diffstat (limited to 'docs/aclocal.m4')
-rw-r--r-- | docs/aclocal.m4 | 4 |
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 ]) |