summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-01-06 14:39:43 +0100
committerKarolin Seeger <kseeger@samba.org>2010-01-07 10:51:28 +0100
commita3ae5f4094693ec126e45afa110ce65ef4b94c05 (patch)
tree846838825f7a55dae39e467a6b923a693eec5252
parent357eae56f1a4745ab605ad58e50bd89d8a351c20 (diff)
downloadsamba-a3ae5f4094693ec126e45afa110ce65ef4b94c05.tar.gz
tdb: fix standalone 'make installdocs'
metze (cherry picked from commit c01f443ebca5e0b6f65fe8b3ab031da51dce2e89) (cherry picked from commit 6a1786aaf88bbc38eebbd489cfe582602bd034e2)
-rw-r--r--lib/tdb/Makefile.in1
-rw-r--r--lib/tdb/tdb.mk6
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/tdb/Makefile.in b/lib/tdb/Makefile.in
index 3abeec3258c..dc22ee3fea0 100644
--- a/lib/tdb/Makefile.in
+++ b/lib/tdb/Makefile.in
@@ -9,6 +9,7 @@ exec_prefix = @exec_prefix@
bindir = @bindir@
includedir = @includedir@
libdir = @libdir@
+mandir = @mandir@
VPATH = @srcdir@:@libreplacedir@
srcdir = @srcdir@
builddir = @builddir@
diff --git a/lib/tdb/tdb.mk b/lib/tdb/tdb.mk
index 3bda884af40..ecc6f9fd08a 100644
--- a/lib/tdb/tdb.mk
+++ b/lib/tdb/tdb.mk
@@ -61,9 +61,9 @@ doc:: manpages/tdbbackup.8 manpages/tdbdump.8 manpages/tdbtool.8
-test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
installdocs::
- ${INSTALLCMD} -d $(DESTDIR)$(mandir)/man1
- for I in manpages/*.1; do \
- ${INSTALLCMD} -m 644 $$I $(DESTDIR)$(mandir)/man1 \
+ ${INSTALLCMD} -d $(DESTDIR)$(mandir)/man8
+ for I in manpages/*.8; do \
+ ${INSTALLCMD} -m 644 $$I $(DESTDIR)$(mandir)/man8; \
done
install-python:: build-python