From: Fred Drake Date: Thu, 4 Mar 1999 21:25:05 +0000 (+0000) Subject: Pass in the 'Send comments to ...' on the mkmodindex command line, X-Git-Tag: v1.5.2c1~202 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b41f97d6a05646df87b2cdf16500a718c5d1a3b4;p=python Pass in the 'Send comments to ...' on the mkmodindex command line, just like we do for mkhowto. --- diff --git a/Doc/html/Makefile b/Doc/html/Makefile index 2fa13ac8e5..e6bf339aaa 100644 --- a/Doc/html/Makefile +++ b/Doc/html/Makefile @@ -24,6 +24,7 @@ BUILDINDEX=$(TOOLSDIR)/buildindex.py # make it clear to l2h, since our support only generates HTML 4.0 L2HARGS= -html_version 4.0 +PYTHONDOCS='
Send comments to python-docs@python.org.' HTMLBASE= file:`pwd` INDEXFILES=api/api.html \ @@ -53,6 +54,7 @@ $(INDEXFILES): $(COMMONPERL) $(TOPDIR)/html/about.dat modindex.html: lib/lib.html mac/mac.html $(TOOLSDIR)/mkmodindex $(TOOLSDIR)/mkmodindex --columns 4 --output modindex.html \ + --address $(PYTHONDOCS) \ lib/modindex.html mac/modindex.html api/api.html: $(PAPERDIR)/api.aux $(BUILDINDEX) @@ -67,7 +69,8 @@ lib/lib.html: $(PAPERDIR)/lib.aux $(BUILDINDEX) $(MKHTML) lib $(L2HARGS) mac/mac.html: $(MACFILES) $(BUILDINDEX) - $(TOOLSDIR)/mkhowto --address '
Send comments to python-docs@python.org.' --html $(TOPDIR)/mac/mac.tex + $(TOOLSDIR)/mkhowto --address $(PYTHONDOCS) --html \ + $(TOPDIR)/mac/mac.tex ref/ref.html: $(PAPERDIR)/ref.aux $(BUILDINDEX) $(MKHTML) ref $(L2HARGS)