diff options
author | Fred Drake <fdrake@acm.org> | 2003-09-29 17:26:08 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-09-29 17:26:08 +0000 |
commit | 25eb5d23e5bf0f1204629d9b687b4f57cf23621b (patch) | |
tree | 5870a80caf68111e84f4c18d36ae698683a48f3a /Doc/tools | |
parent | 02bbf76dd2bbfa89b9e301acf54bfb87bb8686f7 (diff) | |
download | cpython-25eb5d23e5bf0f1204629d9b687b4f57cf23621b.tar.gz |
Update to match the version used to build the 2.3.2c1 documentation.
Diffstat (limited to 'Doc/tools')
-rwxr-xr-x | Doc/tools/mkinfo | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/tools/mkinfo b/Doc/tools/mkinfo index 1c438525ec..be75168fd2 100755 --- a/Doc/tools/mkinfo +++ b/Doc/tools/mkinfo @@ -38,6 +38,8 @@ cd $DOCDIR DOCDIR=`pwd` cd $WORKDIR +COMMONDIR="`dirname $DOCDIR`/commontex" + run() { # show what we're doing, like make does: @@ -49,7 +51,7 @@ run() { # generate the Texinfo file: run $EMACS -batch -q --no-site-file -l $TOOLSDIR/py2texi.el \ - --eval "(setq py2texi-dirs '(\"$DOCDIR\" \"../commontex\" \"../texinputs\"))" \ + --eval "(setq py2texi-dirs '(\"$DOCDIR\" \"$COMMONDIR\" \"../texinputs\"))" \ --eval "(setq py2texi-texi-file-name \"$TEXINAME\")" \ --eval "(setq py2texi-info-file-name \"$INFONAME\")" \ --eval "(py2texi \"$DOCDIR/$DOCFILE\")" \ |