doc/gendoc.py
changeset 27330 6fbf1159a85a
parent 26413 e0c572d4d112
child 27496 f22cd17a22e7
--- a/doc/gendoc.py	Fri Dec 11 17:45:19 2015 -0600
+++ b/doc/gendoc.py	Sat Dec 12 13:23:29 2015 -0500
@@ -4,10 +4,12 @@
 """
 
 import os, sys, textwrap
+
+# This script is executed during installs and may not have C extensions
+# available. Relax C module requirements.
+os.environ['HGMODULEPOLICY'] = 'allow'
 # import from the live mercurial repo
 sys.path.insert(0, "..")
-# fall back to pure modules if required C extensions are not available
-sys.path.append(os.path.join('..', 'mercurial', 'pure'))
 from mercurial import demandimport; demandimport.enable()
 from mercurial import minirst
 from mercurial.commands import table, globalopts