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

Skip to content

Commit bca60c0

Browse files
committed
Fix some rules broken by typos, others by the flattening of the makefile.
1 parent 4419ac1 commit bca60c0

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

Doc/Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ RELEASE=2.1a2
7272
PYTHON= python
7373
DVIPS= dvips -N0 -t $(PAPER)
7474

75-
MKHOWTO= $(TOOLSDIR)/mkhowto
76-
MKHTML= $(MKHOWTO) --html --about html/stdabout.dat \
75+
MKDVI= ../tools/mkhowto --paper=$(PAPER) --dvi
76+
MKHTML= tools/mkhowto --html --about html/stdabout.dat \
7777
--address $(PYTHONDOCS) --up-link ../index.html \
7878
--up-title "Python Documentation Index" \
7979
--global-module-index "../modindex.html"
80-
MKPDF= $(MKHOWTO) --paper=$(PAPER) --pdf
81-
MKPS= $(MKHOWTO) --paper=$(PAPER) --ps
80+
MKPDF= ../tools/mkhowto --paper=$(PAPER) --pdf
81+
MKPS= ../tools/mkhowto --paper=$(PAPER) --ps
8282

8383
BUILDINDEX=$(TOOLSDIR)/buildindex.py
8484

@@ -161,14 +161,14 @@ paper-$(PAPER)/dist.dvi: $(DISTFILES)
161161
(cd paper-$(PAPER); $(MKDVI) ../dist/dist.tex)
162162

163163
paper-$(PAPER)/dist.pdf: $(DISTFILES)
164-
(cd paper-$(PAPER); $(MKPDF) ../dist/dist.tex
164+
(cd paper-$(PAPER); $(MKPDF) ../dist/dist.tex)
165165

166166
# Documenting Python
167167
paper-$(PAPER)/doc.dvi: $(DOCFILES)
168-
(cd paper-$(PAPER); $(MKDVI) ../doc/doc.tex
168+
(cd paper-$(PAPER); $(MKDVI) ../doc/doc.tex)
169169

170170
paper-$(PAPER)/doc.pdf: $(DOCFILES)
171-
(cd paper-$(PAPER); $(MKPDF) ../doc/doc.tex_
171+
(cd paper-$(PAPER); $(MKPDF) ../doc/doc.tex)
172172

173173
# Extending and Embedding the Python Interpreter
174174
paper-$(PAPER)/ext.dvi: $(EXTFILES)

0 commit comments

Comments
 (0)