From: Fred Drake Date: Sat, 4 Apr 1998 04:20:21 +0000 (+0000) Subject: Use the new index style when running makeindex. X-Git-Tag: v1.5.1~195 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8e262b0b242c4978eebcc3be34f4d5ee22cfc0a;p=python Use the new index style when running makeindex. --- diff --git a/Doc/tools/mkhowto.sh b/Doc/tools/mkhowto.sh index 417ba323ab..676b105f15 100755 --- a/Doc/tools/mkhowto.sh +++ b/Doc/tools/mkhowto.sh @@ -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 $? }