summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-02-14 12:47:14 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-02-14 12:47:14 (GMT)
commitf68043c4a9c72826d27a7a2b962c16714af53de6 (patch)
treeaea6963eb5d6cacf0232d46b93ae14262d26c8c9
parentbb2734ab65970eba1d361932f12843799496d1ea (diff)
downloadcpython-f68043c4a9c72826d27a7a2b962c16714af53de6.zip
cpython-f68043c4a9c72826d27a7a2b962c16714af53de6.tar.gz
cpython-f68043c4a9c72826d27a7a2b962c16714af53de6.tar.bz2
Got building documentation from source to work.
-rw-r--r--Mac/OSX/setupDocs.py7
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):