summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorIsuru Fernando <isuruf@gmail.com>2018-07-07 19:22:51 -0600
committerIsuru Fernando <isuruf@gmail.com>2018-07-07 19:22:55 -0600
commit3c63e402f8348e75363ff833d5dfd869e16db5be (patch)
tree5fd884ea5952c41da4a7d070c654e377c836fdff /numpy
parentc390cf4f3d8a65798b93b59864099c44bcf200b9 (diff)
downloadnumpy-3c63e402f8348e75363ff833d5dfd869e16db5be.tar.gz
Change default to override
Diffstat (limited to 'numpy')
-rw-r--r--numpy/distutils/environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/environment.py b/numpy/distutils/environment.py
index 01b5f9b7d..0a9e1c14f 100644
--- a/numpy/distutils/environment.py
+++ b/numpy/distutils/environment.py
@@ -54,7 +54,7 @@ class EnvironmentConfig(object):
if envvar is not None:
envvar_contents = os.environ.get(envvar)
if envvar_contents is not None:
- if append and os.environ.get('NPY_DISTUTILS_APPEND_FLAGS', '1') == '1':
+ if append and os.environ.get('NPY_DISTUTILS_APPEND_FLAGS', '0') == '1':
if var is None:
var = ''
try: