diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-30 16:28:46 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-30 16:28:46 (GMT) |
commit | 345b8df2c472ebce6caca99888ab2ef7bf55542a (patch) | |
tree | 2f1a482027e9967e0a86fb837a1cee9647f56e8c /Doc/Makefile | |
parent | 3ce28e4bd00487e33877e6224fa5057a9085c325 (diff) | |
download | cpython-345b8df2c472ebce6caca99888ab2ef7bf55542a.zip cpython-345b8df2c472ebce6caca99888ab2ef7bf55542a.tar.gz cpython-345b8df2c472ebce6caca99888ab2ef7bf55542a.tar.bz2 |
Always use --dvips-safe when generating HTML for the standard documentation
since we do not have anything that causes dvips to be run except when
PostScript is specifically requested, which is a separate target.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 432aa9e..7ad1220 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -75,9 +75,10 @@ MKDVI= $(PYTHON) ../tools/mkhowto --paper=$(PAPER) --dvi MKHTML= $(PYTHON) tools/mkhowto --html --about html/stdabout.dat \ --address $(PYTHONDOCS) --up-link ../index.html \ --up-title "Python Documentation Index" \ - --global-module-index "../modindex.html" + --global-module-index "../modindex.html" --dvips-safe MKISILOHTML=$(PYTHON) tools/mkhowto --html --about html/stdabout.dat \ - --l2h-init perl/isilo.perl --numeric --split 1 + --l2h-init perl/isilo.perl --numeric --split 1 \ + --dvips-safe MKISILO= iSilo386 -U -y -rCR -d0 MKPDF= $(PYTHON) ../tools/mkhowto --paper=$(PAPER) --pdf MKPS= $(PYTHON) ../tools/mkhowto --paper=$(PAPER) --ps |