aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio/commands.py
diff options
context:
space:
mode:
authorGravatar Lidi Zheng <lidiz@google.com>2018-10-29 21:14:49 -0700
committerGravatar GitHub <noreply@github.com>2018-10-29 21:14:49 -0700
commit688db0ec5b7f05e9d8e51b64a08a285c0debc726 (patch)
tree2c921850796852dbcfc072822285adda923b4a38 /src/python/grpcio/commands.py
parent9569ebe770c1b1b874f3a975676bae829e88f35b (diff)
Remove the environment variable changing line
* This commit failed `tools/run_tests/artifacts/build_artifact_csharp.sh` * It doesn't make any sense!
Diffstat (limited to 'src/python/grpcio/commands.py')
-rw-r--r--src/python/grpcio/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio/commands.py b/src/python/grpcio/commands.py
index 6167f62e5f..62c74c8e0a 100644
--- a/src/python/grpcio/commands.py
+++ b/src/python/grpcio/commands.py
@@ -281,7 +281,7 @@ class BuildExt(build_ext.build_ext):
env['HAS_SYSTEM_OPENSSL_ALPN'] = '0'
make_process = subprocess.Popen(
['make'] + extra_defines + targets,
- env=env,
+ # env=env,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
make_out, make_err = make_process.communicate()