diff options
author | Fred Drake <fdrake@acm.org> | 1998-10-16 17:34:34 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-10-16 17:34:34 (GMT) |
commit | b521095952803a6bee3d315ee9023c1df4cf4fd2 (patch) | |
tree | 729964fac616b5bc3c465b2d451926da4abfeb0c /Doc | |
parent | 6b384833f36264992f6a27ce9a623ad4d9f413af (diff) | |
download | cpython-b521095952803a6bee3d315ee9023c1df4cf4fd2.zip cpython-b521095952803a6bee3d315ee9023c1df4cf4fd2.tar.gz cpython-b521095952803a6bee3d315ee9023c1df4cf4fd2.tar.bz2 |
In build_html(), strip off leading "./" from filename, added by
kpsewhich. This caused a problem with the latest latex2html beta.
Diffstat (limited to 'Doc')
-rwxr-xr-x | Doc/tools/mkhowto.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/tools/mkhowto.sh b/Doc/tools/mkhowto.sh index b85846b..e53569b 100755 --- a/Doc/tools/mkhowto.sh +++ b/Doc/tools/mkhowto.sh @@ -78,6 +78,7 @@ MAX_SPLIT_DEPTH=6 build_html() { TEXFILE=`kpsewhich $1.tex` + TEXFILE="${TEXFILE#./}" BUILDDIR=${2:-$1} latex2html \ -init_file $L2H_INIT_FILE \ |