diff options
author | Ned Deily <nad@acm.org> | 2012-02-19 01:19:12 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2012-02-19 01:19:12 (GMT) |
commit | c5df56304172d2d825fab27db97e6e90660cf7ef (patch) | |
tree | b3667161548e13ebe039face97c8700583bd1f43 /Misc | |
parent | 8d38fcf5a9054f8f878ab58dc026b7945945f958 (diff) | |
download | cpython-c5df56304172d2d825fab27db97e6e90660cf7ef.zip cpython-c5df56304172d2d825fab27db97e6e90660cf7ef.tar.gz cpython-c5df56304172d2d825fab27db97e6e90660cf7ef.tar.bz2 |
Issue #12627: Implement PEP 394 for OS X framework builds.
OS X framework builds already created versioned symlinks for all
executables and scripts installed in the framework bin directory,
of the general form ${cmd} - ${cmd}2.7. The changes here add a
hierarchy of ${cmd} -> ${cmd}2 -> ${cmd}2.7. Per previous
practice, all of the links are created in the framework bin
directory for both the install and altinstall targets. This is
consistent with the long-standing recommendation to manage multiple
framework versions by adding and ordering framework bin directories
on $PATH. Also, per past practice, symlinks to all framework bin
entries are created in $prefix/bin (by default, /usr/local/bin)
for the install target and only versioned links are created for
altinstall, although the use of these links is not recommended
for framework builds and their installation is optional with
the standard OS X installers.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -507,6 +507,8 @@ Extension Modules Build ----- +- Issue #12627: Implement PEP 394 for Python 2.7 ("python2"). + - Issue #8746: Correct faulty configure checks so that os.chflags() and os.lchflags() are once again built on systems that support these functions (*BSD and OS X). Also add new stat file flags for OS X |