diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2006-05-26 12:23:20 +0000 |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2006-05-26 12:23:20 +0000 |
commit | 736123605c29e5bf7cac7b3c39a61250f480824a (patch) | |
tree | 5ba67a77fb9f0de61612645168fc0783568aa79f /Mac/OSX/Extras.install.py | |
parent | 2856e5f3909f8366487ad85ca6c234040317e1e5 (diff) | |
download | cpython-git-736123605c29e5bf7cac7b3c39a61250f480824a.tar.gz |
- Remove previous version of the binary distribution script for OSX
- Some small bugfixes for the IDLE.app wrapper
- Tweaks to build-installer to ensure that python gets build in the right way,
including sqlite3.
- Updated readme files
Diffstat (limited to 'Mac/OSX/Extras.install.py')
-rw-r--r-- | Mac/OSX/Extras.install.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Mac/OSX/Extras.install.py b/Mac/OSX/Extras.install.py index 2521f06a65..ce00af3821 100644 --- a/Mac/OSX/Extras.install.py +++ b/Mac/OSX/Extras.install.py @@ -12,6 +12,7 @@ def isclean(name): if name == 'CVS': return 0 if name == '.cvsignore': return 0 if name == '.DS_store': return 0 + if name == '.svn': return 0 if name.endswith('~'): return 0 if name.endswith('.BAK'): return 0 if name.endswith('.pyc'): return 0 |