summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/man
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-04-23 04:30:58 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:11:37 -0500
commit499f00b4d947b04ab9616a17d9e638caaec9e6f5 (patch)
tree5ed57c2f32fcbcdf170a1755b561fb2fe4883f00 /source4/lib/ldb/man
parent2775398b973abc5c74b75f710b114b6774f76f05 (diff)
downloadsamba-499f00b4d947b04ab9616a17d9e638caaec9e6f5.tar.gz
samba-499f00b4d947b04ab9616a17d9e638caaec9e6f5.tar.bz2
samba-499f00b4d947b04ab9616a17d9e638caaec9e6f5.zip
r6442: Add mechanism for configuring ldb independantly of the rest of
Samba using the autoconf tools. (This used to be commit a8de35ca27e307d1be6ebad517b7012a5de30567)
Diffstat (limited to 'source4/lib/ldb/man')
-rwxr-xr-xsource4/lib/ldb/man/build_manpages.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/source4/lib/ldb/man/build_manpages.sh b/source4/lib/ldb/man/build_manpages.sh
deleted file mode 100755
index 5e5e698ac4..0000000000
--- a/source4/lib/ldb/man/build_manpages.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-for f in man/man3/*.yo; do
- base=`basename $f .yo`;
- man=man/man3/$base.3;
-
- if test $f -nt $man; then
- echo Creating $man from $f
- yodl2man -o $man $f || rm -f $man
- fi
-done