diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-08-20 18:11:03 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-20 18:11:03 -0600 |
commit | b09d2b517c5de63e6ffbf215486bcc59fc71c81f (patch) | |
tree | e07d77aa98d5c2e40aaaaea006a65d5a62901ea7 | |
parent | 6c8ba943c5a5557414546a4d49d9c894133acf02 (diff) | |
download | numpy-b09d2b517c5de63e6ffbf215486bcc59fc71c81f.tar.gz |
MAINT: Small language improvement in release note.
[ci skip]
-rw-r--r-- | doc/release/upcoming_changes/14248.changes.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/release/upcoming_changes/14248.changes.rst b/doc/release/upcoming_changes/14248.changes.rst index 5beab0ec0..ff5f4acef 100644 --- a/doc/release/upcoming_changes/14248.changes.rst +++ b/doc/release/upcoming_changes/14248.changes.rst @@ -2,8 +2,8 @@ numpy.distutils: append behavior changed for LDFLAGS and similar ---------------------------------------------------------------- `numpy.distutils` has always overridden rather than appended to `LDFLAGS` and other similar such environment variables for compiling Fortran extensions. Now -the default behavior changed to appending - which is the expected behavior in -most situations. To preserve the old (overwriting) behavior, set the +the default behavior has changed to appending - which is the expected behavior +in most situations. To preserve the old (overwriting) behavior, set the `NPY_DISTUTILS_APPEND_FLAGS` environment variable to 0. This applies to: `LDFLAGS`, `F77FLAGS`, `F90FLAGS`, `FREEFLAGS`, `FOPT`, `FDEBUG`, and `FFLAGS`. NumPy 1.16 and 1.17 gave build warnings in situations where this change in |