diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-07-23 10:49:17 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-07-23 10:49:17 (GMT) |
commit | dffeaf473224ca425f01653a6c52a6fa8ed9592b (patch) | |
tree | 58ed65960bef8ffbaff419054811bb55a2454079 /Mac/OSX/Dist | |
parent | 5943b4ac1067e5011b66697396d5df93b5ef9af0 (diff) | |
download | cpython-dffeaf473224ca425f01653a6c52a6fa8ed9592b.zip cpython-dffeaf473224ca425f01653a6c52a6fa8ed9592b.tar.gz cpython-dffeaf473224ca425f01653a6c52a6fa8ed9592b.tar.bz2 |
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/OSX/Dist')
-rwxr-xr-x | Mac/OSX/Dist/resources/postflight | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/OSX/Dist/resources/postflight b/Mac/OSX/Dist/resources/postflight index d1ba76f..e5c7f9d 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 |