From: Fred Drake Date: Thu, 22 Feb 2001 23:12:37 +0000 (+0000) Subject: cd to the html/ directory to generate the global module index so the links X-Git-Tag: v2.1b1~223 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f55b11bf7d2f7018de49abd0fe3e6ea5c7b5831;p=python cd to the html/ directory to generate the global module index so the links to the module sections are right. This was also broken when converting to a flat Makefile. --- diff --git a/Doc/Makefile b/Doc/Makefile index 728d781e5b..eb363663c6 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -242,9 +242,10 @@ html/acks.html: ACKS $(TOOLSDIR)/support.py $(TOOLSDIR)/mkackshtml html/modindex.html: $(TOOLSDIR)/support.py $(TOOLSDIR)/mkmodindex html/modindex.html: html/lib/lib.html html/mac/mac.html - $(TOOLSDIR)/mkmodindex --columns 4 --output html/modindex.html \ + (cd html; \ + ../$(TOOLSDIR)/mkmodindex --columns 4 --output modindex.html \ --address $(PYTHONDOCS) \ - html/lib/modindex.html html/mac/modindex.html + lib/modindex.html mac/modindex.html) html: $(INDEXFILES) html/index.html html/modindex.html html/acks.html