diff options
author | Fred Drake <fdrake@acm.org> | 1999-01-27 18:30:16 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-01-27 18:30:16 (GMT) |
commit | c5efde85223f7f83aadcd64503e8317dce6f4856 (patch) | |
tree | aafa5b3a423bbc5fe44532403ec30b9135f2bd24 /Doc/info | |
parent | 105906ff6ed975f46599aac1f48c20efc508dbd8 (diff) | |
download | cpython-c5efde85223f7f83aadcd64503e8317dce6f4856.zip cpython-c5efde85223f7f83aadcd64503e8317dce6f4856.tar.gz cpython-c5efde85223f7f83aadcd64503e8317dce6f4856.tar.bz2 |
Don't build info for the Macintosh module reference by default; it
doesn't do well.
Diffstat (limited to 'Doc/info')
-rw-r--r-- | Doc/info/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/info/Makefile b/Doc/info/Makefile index 412d0e4..1c7505c 100644 --- a/Doc/info/Makefile +++ b/Doc/info/Makefile @@ -11,7 +11,7 @@ SCRIPTS=$(TOOLSDIR)/html2texi.pl $(TOOLSDIR)/checkargs.pm $(TOOLSDIR)/mkinfo \ $(TOOLSDIR)/fixinfo.el all: python-api.info python-ext.info python-lib.info \ - python-mac.info python-ref.info python-tut.info + python-ref.info python-tut.info python-api.info: $(HTMLDIR)/api/api.html $(SCRIPTS) @@ -23,6 +23,7 @@ python-ext.info: $(HTMLDIR)/ext/ext.html $(SCRIPTS) python-lib.info: $(HTMLDIR)/lib/lib.html $(SCRIPTS) $(MKINFO) $< +# Not built by default; the conversion doesn't really handle it well. python-mac.info: $(HTMLDIR)/mac/mac.html $(SCRIPTS) $(MKINFO) $< |