diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2008-12-30 12:59:02 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2008-12-30 12:59:02 (GMT) |
commit | 216001591541571820cdbf31645fa44ee3fc8f4f (patch) | |
tree | 9ecec5c36ae3afbb01f30582769f62c51f23216c /Mac/IDLE | |
parent | a17775fab4fe6c9b2bd1ad539b6b6f072fceeb12 (diff) | |
download | cpython-216001591541571820cdbf31645fa44ee3fc8f4f.zip cpython-216001591541571820cdbf31645fa44ee3fc8f4f.tar.gz cpython-216001591541571820cdbf31645fa44ee3fc8f4f.tar.bz2 |
Make it possible to install a framework build of Python 3.x on OSX.
This the build machinery on OSX to re-enable building (and installing)
PythonLauncher.app and IDLE.app.
This needs ports of fixes to Lib/distutils/util.py and Include/pymacconfig.h
to be fully functiontional, to be fully functional.
I also have a patch for Makefile.pre.in that I'll post on bugs.python.org
for review.
Diffstat (limited to 'Mac/IDLE')
-rw-r--r-- | Mac/IDLE/IDLE.app/Contents/Info.plist | 6 | ||||
-rwxr-xr-x | Mac/IDLE/IDLE.app/Contents/MacOS/IDLE | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Mac/IDLE/IDLE.app/Contents/Info.plist b/Mac/IDLE/IDLE.app/Contents/Info.plist index a097c1a..89513b6 100644 --- a/Mac/IDLE/IDLE.app/Contents/Info.plist +++ b/Mac/IDLE/IDLE.app/Contents/Info.plist @@ -36,7 +36,7 @@ <key>CFBundleExecutable</key> <string>IDLE</string> <key>CFBundleGetInfoString</key> - <string>2.6.0, © 001-2006 Python Software Foundation</string> + <string>%version%, © 2001-2008 Python Software Foundation</string> <key>CFBundleIconFile</key> <string>IDLE.icns</string> <key>CFBundleIdentifier</key> @@ -48,10 +48,10 @@ <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> - <string>2.6.0</string> + <string>%version%</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>2.6.0</string> + <string>%version%</string> </dict> </plist> diff --git a/Mac/IDLE/IDLE.app/Contents/MacOS/IDLE b/Mac/IDLE/IDLE.app/Contents/MacOS/IDLE index 15afffa..ecf29bf 100755 --- a/Mac/IDLE/IDLE.app/Contents/MacOS/IDLE +++ b/Mac/IDLE/IDLE.app/Contents/MacOS/IDLE @@ -1,4 +1,4 @@ -#!/Library/Frameworks/Python.framework/Versions/3.0/Resources/Python.app/Contents/MacOS/Python +#!%prefix%/Resources/Python.app/Contents/MacOS/Python3 import sys, os execdir = os.path.dirname(sys.argv[0]) |