diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-07-23 11:11:26 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-07-23 11:11:26 (GMT) |
commit | 2f4f63a4532fc00861d5a78ff996f40953fc78da (patch) | |
tree | b34d7c0c34e0131db79fbb154f9120fdf0666023 | |
parent | 880685f69894d3d267ac41abe0c06db3ba9a322d (diff) | |
download | cpython-2f4f63a4532fc00861d5a78ff996f40953fc78da.zip cpython-2f4f63a4532fc00861d5a78ff996f40953fc78da.tar.gz cpython-2f4f63a4532fc00861d5a78ff996f40953fc78da.tar.bz2 |
Fix for issue 9275: the OSX installer no longer installs links in /usr/local
This was an unintentional change to the 2.7 installer, and confuses users.
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index b73cc5e..8c44020 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -275,7 +275,7 @@ def pkg_recipes(): is not necessary to use Python. """, required=False, - selected='unselected', + selected='selected', ), dict( name="PythonDocumentation", |