Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b41f97d

Browse files
committed
Pass in the 'Send comments to ...' on the mkmodindex command line,
just like we do for mkhowto.
1 parent 5f7832d commit b41f97d

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Doc/html/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ BUILDINDEX=$(TOOLSDIR)/buildindex.py
2424
# make it clear to l2h, since our support only generates HTML 4.0
2525
L2HARGS= -html_version 4.0
2626

27+
PYTHONDOCS='<hr>Send comments to <a href="mailto:[email protected]">[email protected]</a>.'
2728
HTMLBASE= file:`pwd`
2829

2930
INDEXFILES=api/api.html \
@@ -53,6 +54,7 @@ $(INDEXFILES): $(COMMONPERL) $(TOPDIR)/html/about.dat
5354

5455
modindex.html: lib/lib.html mac/mac.html $(TOOLSDIR)/mkmodindex
5556
$(TOOLSDIR)/mkmodindex --columns 4 --output modindex.html \
57+
--address $(PYTHONDOCS) \
5658
lib/modindex.html mac/modindex.html
5759

5860
api/api.html: $(PAPERDIR)/api.aux $(BUILDINDEX)
@@ -67,7 +69,8 @@ lib/lib.html: $(PAPERDIR)/lib.aux $(BUILDINDEX)
6769
$(MKHTML) lib $(L2HARGS)
6870

6971
mac/mac.html: $(MACFILES) $(BUILDINDEX)
70-
$(TOOLSDIR)/mkhowto --address '<hr>Send comments to <a href="mailto:[email protected]">[email protected]</a>.' --html $(TOPDIR)/mac/mac.tex
72+
$(TOOLSDIR)/mkhowto --address $(PYTHONDOCS) --html \
73+
$(TOPDIR)/mac/mac.tex
7174

7275
ref/ref.html: $(PAPERDIR)/ref.aux $(BUILDINDEX)
7376
$(MKHTML) ref $(L2HARGS)

0 commit comments

Comments
 (0)