summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJust van Rossum <just@letterror.com>2003-02-12 16:19:39 (GMT)
committerJust van Rossum <just@letterror.com>2003-02-12 16:19:39 (GMT)
commitc96d6ce3c265bf9a217eaa9b2631e5e9baee6420 (patch)
tree37efde88d613b1e4beb637b5eae75534ad675f7a
parent3a146b6c7db239cec01696084d9fe6a5950dc6a2 (diff)
downloadcpython-c96d6ce3c265bf9a217eaa9b2631e5e9baee6420.zip
cpython-c96d6ce3c265bf9a217eaa9b2631e5e9baee6420.tar.gz
cpython-c96d6ce3c265bf9a217eaa9b2631e5e9baee6420.tar.bz2
Thank you sir, can I have another.
-rwxr-xr-xLib/plat-mac/bundlebuilder.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/plat-mac/bundlebuilder.py b/Lib/plat-mac/bundlebuilder.py
index a90a194..d8c5557 100755
--- a/Lib/plat-mac/bundlebuilder.py
+++ b/Lib/plat-mac/bundlebuilder.py
@@ -255,10 +255,10 @@ BOOTSTRAP_SCRIPT = """\
#!/bin/sh
execdir=$(dirname "${0}")
-executable=${execdir}/%(executable)s
+executable="${execdir}/%(executable)s"
resdir=$(dirname "${execdir}")/Resources
-main=${resdir}/%(mainprogram)s
-PYTHONPATH=$resdir
+main="${resdir}/%(mainprogram)s"
+PYTHONPATH="$resdir"
export PYTHONPATH
exec "${executable}" "${main}" "${1}"
"""