Remove the environment variable changing line

* This commit failed `tools/run_tests/artifacts/build_artifact_csharp.sh`
* It doesn't make any sense!
pull/17049/head
Lidi Zheng 7 years ago committed by GitHub
parent 9569ebe770
commit 688db0ec5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/python/grpcio/commands.py

@ -281,7 +281,7 @@ class BuildExt(build_ext.build_ext):
env['HAS_SYSTEM_OPENSSL_ALPN'] = '0' env['HAS_SYSTEM_OPENSSL_ALPN'] = '0'
make_process = subprocess.Popen( make_process = subprocess.Popen(
['make'] + extra_defines + targets, ['make'] + extra_defines + targets,
env=env, # env=env,
stdout=subprocess.PIPE, stdout=subprocess.PIPE,
stderr=subprocess.PIPE) stderr=subprocess.PIPE)
make_out, make_err = make_process.communicate() make_out, make_err = make_process.communicate()

Loading…
Cancel
Save