Author: Matti Picus <[email protected]>
Branch: 
Changeset: r70394:5ccb263575f6
Date: 2014-04-02 17:12 +0300
http://bitbucket.org/pypy/pypy/changeset/5ccb263575f6/

Log:    set env in subprocess

diff --git a/rpython/translator/platform/windows.py 
b/rpython/translator/platform/windows.py
--- a/rpython/translator/platform/windows.py
+++ b/rpython/translator/platform/windows.py
@@ -414,7 +414,8 @@
         try:
             returncode, stdout, stderr = _run_subprocess(
                 'nmake',
-                ['/nologo', '/f', str(path.join('Makefile'))] + extra_opts)
+                ['/nologo', '/f', str(path.join('Makefile'))] + extra_opts,
+                evn = self.c_environ)
         finally:
             oldcwd.chdir()
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to