]> granicus.if.org Git - python/commitdiff
Issue #9516: Update Misc/NEWS.
authorNed Deily <nad@acm.org>
Wed, 29 Jun 2011 02:51:30 +0000 (19:51 -0700)
committerNed Deily <nad@acm.org>
Wed, 29 Jun 2011 02:51:30 +0000 (19:51 -0700)
Misc/NEWS

index a8c607936cbd781ed6a0da1a4fe97acd3e0da75c..834dea6487ff806903c7264cec2ac2627d7fb52d 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,17 @@ Core and Builtins
 Library
 -------
 
+- Issue #9516: On Mac OS X, change Distutils to no longer globally attempt to
+  check or set the MACOSX_DEPLOYMENT_TARGET environment variable for the
+  interpreter process.  This could cause failures in non-Distutils subprocesses
+  and was unreliable since tests or user programs could modify the interpreter
+  environment after Distutils set it.  Instead, have Distutils set the the
+  deployment target only in the environment of each build subprocess.  It is
+  still possible to globally override the default by setting
+  MACOSX_DEPLOYMENT_TARGET before launching the interpreter; its value must be
+  greater or equal to the default value, the value with which the interpreter
+  was built.
+
 - Issue #12404: Remove C89 incompatible code from mmap module. Patch by Akira
   Kitada.