diff options
author | Fred Drake <fdrake@acm.org> | 1998-02-25 15:30:47 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-02-25 15:30:47 (GMT) |
commit | 888dfa90f3a389705bebabd7c17b6ca769ede2d3 (patch) | |
tree | 7477bac6bcfb8546f41d6234e9757eb6f458063c /Doc/Makefile | |
parent | 9cf4bbd630b89a585f1eac3f27ccb73d789d2c38 (diff) | |
download | cpython-888dfa90f3a389705bebabd7c17b6ca769ede2d3.zip cpython-888dfa90f3a389705bebabd7c17b6ca769ede2d3.tar.gz cpython-888dfa90f3a389705bebabd7c17b6ca769ede2d3.tar.bz2 |
Change quoting of the "echo" commands yet again.... why can't shells agree?
Derive the name of the modules .idx from the jobname.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 1f6a4a4..d039e287 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -163,10 +163,10 @@ LIBFILES = lib.tex \ # Library document lib.dvi: modindex.py indfix.py $(LIBFILES) - echo '\\''begin{theindex}\end{theindex}' >$*.ind - echo '\\''begin{theindex}\label{modindex}\end{theindex}' >modules.ind + echo '\\begin{theindex}\end{theindex}' >$*.ind + echo '\\begin{theindex}\label{modindex}\end{theindex}' >mod$*.ind $(LATEX) $* - ./modindex.py modules.idx + ./modindex.py mod$*.idx ./fix_hack $*.idx $(MAKEINDEX) $*.idx ./indfix.py $*.ind |