summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
Diffstat (limited to 'Mac')
-rwxr-xr-xMac/Lib/bundlebuilder.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/Mac/Lib/bundlebuilder.py b/Mac/Lib/bundlebuilder.py
index 52d6579..a4811f1 100755
--- a/Mac/Lib/bundlebuilder.py
+++ b/Mac/Lib/bundlebuilder.py
@@ -350,16 +350,15 @@ class AppBuilder(BundleBuilder):
self.execpath = execpath
if self.mainprogram is not None:
- mainname = os.path.basename(self.mainprogram)
- self.files.append((self.mainprogram, pathjoin(resdir, mainname)))
- # Create execve wrapper
- mainprogram = self.mainprogram # XXX for locals() call
+ mainprogram = os.path.basename(self.mainprogram)
+ self.files.append((self.mainprogram, pathjoin(resdir, mainprogram)))
+ # Write bootstrap script
executable = os.path.basename(self.executable)
execdir = pathjoin(self.bundlepath, self.execdir)
- mainwrapperpath = pathjoin(execdir, self.name)
+ bootstrappath = pathjoin(execdir, self.name)
makedirs(execdir)
- open(mainwrapperpath, "w").write(BOOTSTRAP_SCRIPT % locals())
- os.chmod(mainwrapperpath, 0775)
+ open(bootstrappath, "w").write(BOOTSTRAP_SCRIPT % locals())
+ os.chmod(bootstrappath, 0775)
def postProcess(self):
self.addPythonModules()