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

Skip to content

Commit fbdddde

Browse files
committed
Reflect new name of index style file.
1 parent 7f77db9 commit fbdddde

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Doc/paper-letter/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PAPER=letter
55
LATEX= latex
66
PDFLATEX= pdflatex
77
DVIPS= dvips -N0 -t $(PAPER)
8-
MAKEINDEX= makeindex -s ../texinputs/myindex.ist
8+
MAKEINDEX= makeindex -s ../texinputs/python.ist
99
PYTHON= python
1010

1111
TOOLSDIR= ../tools
@@ -35,7 +35,7 @@ include ../Makefile.deps
3535

3636
COMMONSTYLES= ../texinputs/python.sty \
3737
../texinputs/pypaper.sty \
38-
../texinputs/myindex.ist
38+
../texinputs/python.ist
3939

4040
COMMONTEX= ../texinputs/copyright.tex \
4141
../texinputs/boilerplate.tex

Doc/tools/mkdvi.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ if [ -f $part.idx ] ; then
2727
# using the index
2828
echo $srcdir'/tools/fix_hack '$part'.idx'
2929
$srcdir/tools/fix_hack $part.idx || exit $?
30-
echo 'makeindex -s '$srcdir'/texinputs/myindex.ist '$part'.idx'
31-
makeindex -s $srcdir/texinputs/myindex.ist $part.idx || exit $?
30+
echo 'makeindex -s '$srcdir'/texinputs/python.ist '$part'.idx'
31+
makeindex -s $srcdir/texinputs/python.ist $part.idx || exit $?
3232
else
3333
# skipping the index; clean up the unused file
3434
rm -f $part.ind

Doc/tools/mkhowto.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ use_latex() {
119119
fi
120120
if [ -f $MYFILE.idx ] ; then
121121
$MYDIR/fix_hack $MYFILE.idx || exit $?
122-
makeindex -s $TOPDIR/texinputs/myindex.ist $MYFILE.idx || exit $?
122+
makeindex -s $TOPDIR/texinputs/python.ist $MYFILE.idx || exit $?
123123
fi
124124
if [ -f $MYFILE.toc -a $MYLATEX = pdflatex ] ; then
125125
$MYDIR/toc2bkm.py -c section $MYFILE

0 commit comments

Comments
 (0)