Mercurial > hg
changeset 32890:20fc5d39d0c1
setup: update a comment that blamed py26 for a Windows workaround
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Fri, 16 Jun 2017 21:57:22 -0400 |
parents | a7310a477966 |
children | 7e2eb964a561 |
files | setup.py |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Fri Jun 16 20:55:34 2017 -0400 +++ b/setup.py Fri Jun 16 21:57:22 2017 -0400 @@ -176,9 +176,8 @@ if 'LD_LIBRARY_PATH' in os.environ: env['LD_LIBRARY_PATH'] = os.environ['LD_LIBRARY_PATH'] if 'SystemRoot' in os.environ: - # Copy SystemRoot into the custom environment for Python 2.6 - # under Windows. Otherwise, the subprocess will fail with - # error 0xc0150004. See: http://bugs.python.org/issue3440 + # SystemRoot is required by Windows to load various DLLs. See: + # https://bugs.python.org/issue13524#msg148850 env['SystemRoot'] = os.environ['SystemRoot'] if os.path.isdir('.hg'):