mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Reflect new name of index style file.
This commit is contained in:
parent
7f77db9530
commit
fbddddee49
3 changed files with 5 additions and 5 deletions
|
@ -27,8 +27,8 @@ if [ -f $part.idx ] ; then
|
|||
# using the index
|
||||
echo $srcdir'/tools/fix_hack '$part'.idx'
|
||||
$srcdir/tools/fix_hack $part.idx || exit $?
|
||||
echo 'makeindex -s '$srcdir'/texinputs/myindex.ist '$part'.idx'
|
||||
makeindex -s $srcdir/texinputs/myindex.ist $part.idx || exit $?
|
||||
echo 'makeindex -s '$srcdir'/texinputs/python.ist '$part'.idx'
|
||||
makeindex -s $srcdir/texinputs/python.ist $part.idx || exit $?
|
||||
else
|
||||
# skipping the index; clean up the unused file
|
||||
rm -f $part.ind
|
||||
|
|
|
@ -119,7 +119,7 @@ use_latex() {
|
|||
fi
|
||||
if [ -f $MYFILE.idx ] ; then
|
||||
$MYDIR/fix_hack $MYFILE.idx || exit $?
|
||||
makeindex -s $TOPDIR/texinputs/myindex.ist $MYFILE.idx || exit $?
|
||||
makeindex -s $TOPDIR/texinputs/python.ist $MYFILE.idx || exit $?
|
||||
fi
|
||||
if [ -f $MYFILE.toc -a $MYLATEX = pdflatex ] ; then
|
||||
$MYDIR/toc2bkm.py -c section $MYFILE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue