From: Jack Jansen Date: Fri, 14 Feb 2003 12:47:14 +0000 (+0000) Subject: Got building documentation from source to work. X-Git-Tag: v2.3c1~1843 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f68043c4a9c72826d27a7a2b962c16714af53de6;p=python Got building documentation from source to work. --- diff --git a/Mac/OSX/setupDocs.py b/Mac/OSX/setupDocs.py index b15ed1f827..6b6f9b7e84 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):