aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio/commands.py
diff options
context:
space:
mode:
authorGravatar Lidi Zheng <lidiz@google.com>2018-10-30 10:00:55 -0700
committerGravatar Lidi Zheng <lidiz@google.com>2018-10-30 10:00:55 -0700
commit4e5ee57000a6e54d6143c65d6925296b9a0d0e21 (patch)
tree38b41712dd098d1f2e68972c78db873f9e51966a /src/python/grpcio/commands.py
parent7502a2311a42da20242b8adb724173018fa14a2e (diff)
Change flag to `REQUIRE_CUSTOM_LIBRARIES_opt`
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 70d5c5dd35..3cb0eb179e 100644
--- a/src/python/grpcio/commands.py
+++ b/src/python/grpcio/commands.py
@@ -278,7 +278,7 @@ class BuildExt(build_ext.build_ext):
# libraries. It prevents dependency issues while distributing to
# Mac users who use MacPorts to manage their libraries. #17002
mod_env = dict(os.environ)
- mod_env['HAS_SYSTEM_OPENSSL_ALPN'] = '0'
+ mod_env['REQUIRE_CUSTOM_LIBRARIES_opt'] = '1'
make_process = subprocess.Popen(
['make'] + extra_defines + targets,
env=mod_env,