diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-01-06 14:39:43 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-01-06 14:43:39 +0100 |
commit | c01f443ebca5e0b6f65fe8b3ab031da51dce2e89 (patch) | |
tree | bf2d38afe11839c03eda2ff08a1d3797dec6cf98 /lib | |
parent | 0a3a6bb8f910df02cb429fdeacf0ab8d683e0b89 (diff) | |
download | samba-c01f443ebca5e0b6f65fe8b3ab031da51dce2e89.tar.gz samba-c01f443ebca5e0b6f65fe8b3ab031da51dce2e89.tar.bz2 samba-c01f443ebca5e0b6f65fe8b3ab031da51dce2e89.zip |
tdb: fix standalone 'make installdocs'
metze
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tdb/Makefile.in | 1 | ||||
-rw-r--r-- | lib/tdb/tdb.mk | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/tdb/Makefile.in b/lib/tdb/Makefile.in index 3abeec3258..dc22ee3fea 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 3bda884af4..ecc6f9fd08 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 |