summaryrefslogtreecommitdiff
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-07-23 10:49:17 +0000
committerJack Jansen <jack.jansen@cwi.nl>2003-07-23 10:49:17 +0000
commitfda71a4311a8c5e9d383767852642020a435b7f6 (patch)
tree227409512cad9f64d173ba8888407770fea26fd8 /Mac
parentc7a982745e2be485c38fa2b1b240f94d06d2a800 (diff)
downloadcpython-fda71a4311a8c5e9d383767852642020a435b7f6.tar.gz
Scripts runs with pythonw no longer had full window manager access due
to the name change of Python.app/Contents/MacOS/python to Python.app/Contents/MacOS/Python. Fixes #776116.
Diffstat (limited to 'Mac')
-rwxr-xr-xMac/OSX/Dist/resources/postflight2
-rw-r--r--Mac/OSX/Makefile4
2 files changed, 3 insertions, 3 deletions
diff --git a/Mac/OSX/Dist/resources/postflight b/Mac/OSX/Dist/resources/postflight
index d1ba76f01d..e5c7f9de22 100755
--- a/Mac/OSX/Dist/resources/postflight
+++ b/Mac/OSX/Dist/resources/postflight
@@ -32,7 +32,7 @@ ln -fsh python$PYVER $TOOLDIR/python
rm -f $TOOLDIR/pythonw$PYVER
cat > $TOOLDIR/pythonw$PYVER <<EOF
#!/bin/sh
-exec "$DEST/Library/Frameworks/Python.framework/Versions/$PYVER/Resources/Python.app/Contents/MacOS/python" "\$@"
+exec "$DEST/Library/Frameworks/Python.framework/Versions/$PYVER/Resources/Python.app/Contents/MacOS/Python" "\$@"
EOF
chmod +x $TOOLDIR/pythonw$PYVER
ln -fsh pythonw$PYVER $TOOLDIR/pythonw
diff --git a/Mac/OSX/Makefile b/Mac/OSX/Makefile
index 729f1ef516..4908ee3c81 100644
--- a/Mac/OSX/Makefile
+++ b/Mac/OSX/Makefile
@@ -18,7 +18,7 @@ APPINSTALLDIR=$(prefix)/Resources/Python.app
# Variables for installing the "normal" unix binaries
INSTALLED_PYTHON=$(prefix)/bin/python
-INSTALLED_PYTHONW=$(APPINSTALLDIR)/Contents/MacOS/python
+INSTALLED_PYTHONW=$(APPINSTALLDIR)/Contents/MacOS/Python
# Items more-or-less copied from the main Makefile
DIRMODE=755
@@ -230,7 +230,7 @@ installmacsubtree:
# We use the full name here in stead of $(INSTALLED_PYTHONW), because
# the latter may be overridden by Makefile.jaguar when building for a pre-installed
# /usr/bin/python
-$(APPINSTALLDIR)/Contents/MacOS/python: install_Python
+$(APPINSTALLDIR)/Contents/MacOS/Python: install_Python
# $(INSTALLED_PYTHON) has to be done by the main Makefile, we cannot do that here.
# At least this rule will give an error if it doesn't exist.