diff options
author | Fred Drake <fdrake@acm.org> | 2003-05-22 15:28:22 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-05-22 15:28:22 (GMT) |
commit | a63beee897c0ad21abd426f1ddf0ecd03ceaf245 (patch) | |
tree | ffc15caaf246832531fd683623812ef16a07c940 | |
parent | 92a21a4768bde16dfa3d1b57662a4454a03c4286 (diff) | |
download | cpython-a63beee897c0ad21abd426f1ddf0ecd03ceaf245.zip cpython-a63beee897c0ad21abd426f1ddf0ecd03ceaf245.tar.gz cpython-a63beee897c0ad21abd426f1ddf0ecd03ceaf245.tar.bz2 |
Correct dependency information -- the Python docs load the "About this
document" text from html/stdabout.dat, not html/about.dat.
-rw-r--r-- | Doc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index e921dee..50acdd9 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -311,7 +311,7 @@ info: $(ALLCSSFILES): html/style.css cp $< $@ -$(INDEXFILES): $(COMMONPERL) html/about.dat tools/node2label.pl +$(INDEXFILES): $(COMMONPERL) html/stdabout.dat tools/node2label.pl html/acks.html: ACKS $(TOOLSDIR)/support.py $(TOOLSDIR)/mkackshtml $(PYTHON) $(TOOLSDIR)/mkackshtml --address $(PYTHONDOCS) \ @@ -393,7 +393,7 @@ ISILOINDEXFILES=isilo/api/api.html \ isilo/dist/dist.html \ isilo/whatsnew/$(WHATSNEW).html -$(ISILOINDEXFILES): $(COMMONPERL) html/about.dat perl/isilo.perl +$(ISILOINDEXFILES): $(COMMONPERL) html/stdabout.dat perl/isilo.perl isilo: isilo/python-api-$(RELEASE).pdb \ isilo/python-doc-$(RELEASE).pdb \ |