Please find attached a patch that copies the html version of manpages to /usr/share/doc/tgt/html
Attachment:
0001-Create-a-usr-share-doc-tgt-html-directory-and-copy.patch.gz
Description: GNU Zip compressed data
From fd5c2f951b4d56736b2a4ba7ad7c3475b7987fc9 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg <ronniesahlberg@xxxxxxxxx> Date: Thu, 1 Apr 2010 08:22:45 +1100 Subject: [PATCH] Create a /usr/share/doc/tgt/html directory and copy the html version of the manpages there. Signed-off-by: Ronnie Sahlberg <ronniesahlberg@xxxxxxxxx> --- doc/Makefile | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/doc/Makefile b/doc/Makefile index 19d943a..3c6fa08 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -22,6 +22,8 @@ install: $(MANPAGES) $(DOCS) install -m 644 $(MANPAGES) $(DESTDIR)$(mandir)/man8 install -d -m 755 $(DESTDIR)$(docdir) install -m 644 $(DOCS) $(DESTDIR)$(docdir) + install -d -m 755 $(DESTDIR)$(docdir)/html + install -m 644 $(XMLHTML) $(DESTDIR)$(docdir)/html .PHONY: clean clean: -- 1.5.4.3