diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-03-04 21:07:19 +0000 |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-03-04 21:07:19 +0000 |
commit | 799868e8a7051c0ea22eaee1cfb0a7005de3b897 (patch) | |
tree | b581061bbda38bfb80d97c584641187512cf69cb /Mac/BuildScript/build-installer.py | |
parent | d5ad6da03be91167405998d4c5555df6dd7f5299 (diff) | |
download | cpython-git-799868e8a7051c0ea22eaee1cfb0a7005de3b897.tar.gz |
Fix issue 5224.
Diffstat (limited to 'Mac/BuildScript/build-installer.py')
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 2408960d94..559b5de156 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -1031,8 +1031,7 @@ def main(): buildPythonDocs() fn = os.path.join(WORKDIR, "_root", "Applications", "Python %s"%(getVersion(),), "Update Shell Profile.command") - patchFile("scripts/postflight.patch-profile", fn) - os.chmod(fn, 0755) + patchScript("scripts/postflight.patch-profile", fn) folder = os.path.join(WORKDIR, "_root", "Applications", "Python %s"%( getVersion(),)) |