[GRASS-dev] [GRASS GIS] #1721: Man pages not created for addons
GRASS GIS
trac at osgeo.org
Mon Sep 3 23:32:07 PDT 2012
#1721: Man pages not created for addons
-------------------------+--------------------------------------------------
Reporter: micha | Owner: grass-dev@…
Type: defect | Status: new
Priority: normal | Milestone: 6.4.3
Component: Addons | Version: 6.4.2
Keywords: | Platform: Unspecified
Cpu: Unspecified |
-------------------------+--------------------------------------------------
When compiling some extensions, the man pages were not created, even
though the extension binary was compiled successfully. It seems the
problem is in the Makefile: $GISBASE/include/Make/Man.make. The full path
to the g.html2man program is not defined correctly.
This patch fixes the issue:
{{{
diff -u Man.make.orig Man.make
--- Man.make.orig 2012-09-04 09:17:04.754169001 +0300
+++ Man.make 2012-09-04 09:17:22.748137256 +0300
@@ -2,7 +2,7 @@
SECT = 1
MANDIR = $(ARCH_DISTDIR)/man/man$(SECT)
HTMLDIR = $(ARCH_DISTDIR)/docs/html
-HTML2MAN = GRASS_PERL=${PERL} VERSION_NUMBER=${GRASS_VERSION_NUMBER} sh
$(MODULE_TOPDIR)/tools/g.html2man
+HTML2MAN = GRASS_PERL=${PERL} VERSION_NUMBER=${GRASS_VERSION_NUMBER} sh
$(MODULE_TOPDIR)/tools/g.html2man/g.html2man
# generic man rules for all commands
}}}
--
Ticket URL: <http://trac.osgeo.org/grass/ticket/1721>
GRASS GIS <http://grass.osgeo.org>
More information about the grass-dev
mailing list