From 45f5b61a5baa2a6479ca25b746ddead897c51fd6 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Thu, 24 Dec 2009 10:06:43 -0800 Subject: [PATCH] Fix the installation of the tdb manual pages --- lib/tdb/Makefile.in | 1 + 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 3abeec3..dc22ee3 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 93aa899..9f65783 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 -- 1.6.5.7