diff options
author | Fred Drake <fdrake@acm.org> | 2000-04-03 04:19:14 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-04-03 04:19:14 (GMT) |
commit | ba82878a3bee6395a8ff13c9c307416a886f93cc (patch) | |
tree | 0711fbad046195399f506dc7b3dcf76ef452ea33 /Doc/tools/mkhowto | |
parent | a22b576d05d7f7b8f70341268a46c219a3fd6a9c (diff) | |
download | cpython-ba82878a3bee6395a8ff13c9c307416a886f93cc.zip cpython-ba82878a3bee6395a8ff13c9c307416a886f93cc.tar.gz cpython-ba82878a3bee6395a8ff13c9c307416a886f93cc.tar.bz2 |
Merged changes from the 1.5.2p2 release.
Diffstat (limited to 'Doc/tools/mkhowto')
-rwxr-xr-x | Doc/tools/mkhowto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/tools/mkhowto b/Doc/tools/mkhowto index 621aa8e..043ac57 100755 --- a/Doc/tools/mkhowto +++ b/Doc/tools/mkhowto @@ -330,6 +330,8 @@ class Job: if texfile[:2] == os.curdir + os.sep: texfile = texfile[2:] # build the command line and run LaTeX2HTML: + if not os.path.isdir(builddir): + os.mkdir(builddir) args = [LATEX2HTML_BINARY, "-init_file", L2H_INIT_FILE, "-init_file", self.l2h_aux_init_file, |