summaryrefslogtreecommitdiff
path: root/docs-xml/aclocal.m4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2009-05-01 04:40:55 +0200
committerJelmer Vernooij <jelmer@samba.org>2009-05-01 13:10:13 +0200
commit4abc5c945e305df24476f2cc93b63353c3dd922e (patch)
treef45eb730ee080cf3cab2db1f6d4e6e497f99c9c5 /docs-xml/aclocal.m4
parent6e48495ee715156a292d96d9fa87ec7ff17d02f6 (diff)
downloadsamba-4abc5c945e305df24476f2cc93b63353c3dd922e.tar.gz
samba-4abc5c945e305df24476f2cc93b63353c3dd922e.tar.bz2
samba-4abc5c945e305df24476f2cc93b63353c3dd922e.zip
Fix 'make undocumented' (by hardcoding the source path, now that the docs
live in the same git repo)
Diffstat (limited to 'docs-xml/aclocal.m4')
-rw-r--r--docs-xml/aclocal.m426
1 files changed, 0 insertions, 26 deletions
diff --git a/docs-xml/aclocal.m4 b/docs-xml/aclocal.m4
index 9ecbda5e6b..1252d2113f 100644
--- a/docs-xml/aclocal.m4
+++ b/docs-xml/aclocal.m4
@@ -36,29 +36,3 @@ AC_DEFUN(DOCS_TARGET_REQUIRE_PROGRAM, [
fi
fi
])
-
-dnl DOCS_TARGET_REQUIRE_DIR
-dnl arg1: list of possible paths
-dnl arg2: file in dir know to exist
-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
- test -f "$I/$2" && $3="$I"
- done
-
- if test x$$3 = x; then
- if test x"$$4_REQUIRES" = x; then
- $4_REQUIRES="$3"
- else
- $4_REQUIRES="$$4_REQUIRES $3"
- fi
- AC_MSG_RESULT([not found])
- else
- AC_MSG_RESULT([found in $$3])
- fi
-])