##// END OF EJS Templates
setup: update a comment that blamed py26 for a Windows workaround
Matt Harbison -
r32890:20fc5d39 default
parent child Browse files
Show More
@@ -176,9 +176,8 b" env = {'HGMODULEPOLICY': 'py',"
176 176 if 'LD_LIBRARY_PATH' in os.environ:
177 177 env['LD_LIBRARY_PATH'] = os.environ['LD_LIBRARY_PATH']
178 178 if 'SystemRoot' in os.environ:
179 # Copy SystemRoot into the custom environment for Python 2.6
180 # under Windows. Otherwise, the subprocess will fail with
181 # error 0xc0150004. See: http://bugs.python.org/issue3440
179 # SystemRoot is required by Windows to load various DLLs. See:
180 # https://bugs.python.org/issue13524#msg148850
182 181 env['SystemRoot'] = os.environ['SystemRoot']
183 182
184 183 if os.path.isdir('.hg'):
General Comments 0
You need to be logged in to leave comments. Login now