Kaydet (Commit) a8e262b0 authored tarafından Fred Drake's avatar Fred Drake

Use the new index style when running makeindex.

üst 10ad52e8
......@@ -86,7 +86,7 @@ build_dvi() {
latex $1 || exit $?
if [ -f $1.idx ] ; then
`dirname $0`/fix_hack $1.idx || exit $?
makeindex $1.idx || exit $?
makeindex -s $TOPDIR/texinputs/myindex.ist $1.idx || exit $?
fi
latex $1 || exit $?
}
......@@ -105,7 +105,7 @@ build_pdf() {
`dirname $0`/toc2bkm.py -c section $FILE || exit $?
if [ -f $1.idx ] ; then
`dirname $0`/fix_hack $1.idx || exit $?
makeindex $1.idx || exit $?
makeindex -s $TOPDIR/texinputs/myindex.ist $1.idx || exit $?
fi
pdflatex $1 || exit $?
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment