Got building documentation from source to work.
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 @@
 		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):