diff options
author | Isuru Fernando <isuruf@gmail.com> | 2018-07-07 19:22:51 -0600 |
---|---|---|
committer | Isuru Fernando <isuruf@gmail.com> | 2018-07-07 19:22:55 -0600 |
commit | 3c63e402f8348e75363ff833d5dfd869e16db5be (patch) | |
tree | 5fd884ea5952c41da4a7d070c654e377c836fdff /numpy | |
parent | c390cf4f3d8a65798b93b59864099c44bcf200b9 (diff) | |
download | numpy-3c63e402f8348e75363ff833d5dfd869e16db5be.tar.gz |
Change default to override
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/environment.py | 2 |
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: |