diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-02-14 12:47:14 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-02-14 12:47:14 (GMT) |
commit | f68043c4a9c72826d27a7a2b962c16714af53de6 (patch) | |
tree | aea6963eb5d6cacf0232d46b93ae14262d26c8c9 /Mac/OSX | |
parent | bb2734ab65970eba1d361932f12843799496d1ea (diff) | |
download | cpython-f68043c4a9c72826d27a7a2b962c16714af53de6.zip cpython-f68043c4a9c72826d27a7a2b962c16714af53de6.tar.gz cpython-f68043c4a9c72826d27a7a2b962c16714af53de6.tar.bz2 |
Got building documentation from source to work.
Diffstat (limited to 'Mac/OSX')
-rw-r--r-- | Mac/OSX/setupDocs.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Mac/OSX/setupDocs.py b/Mac/OSX/setupDocs.py index b15ed1f..6b6f9b7 100644 --- a/Mac/OSX/setupDocs.py +++ b/Mac/OSX/setupDocs.py @@ -57,10 +57,9 @@ class DocBuild(build): self.spawn('tar', '-xzf', '../html-%s.tgz' % self.doc_version) os.chdir(workdir); - def buildDocsFromSouce(self): - #Totally untested - spawn(('make','--directory', '../Docs'), 1, self.verbose, self.dry_run) - copy_tree('../Docs/html', self.doc_dir) + def buildDocsFromSource(self): + spawn(('make','--directory', '../../Doc', 'html'), 1, self.verbose, self.dry_run) + copy_tree('../../Doc/html', self.doc_dir) def ensureHtml(self): if not os.path.exists(self.doc_dir): |