summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/plat-mac')
-rwxr-xr-xLib/plat-mac/bundlebuilder.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/plat-mac/bundlebuilder.py b/Lib/plat-mac/bundlebuilder.py
index a07e97f..eb3a4a8 100755
--- a/Lib/plat-mac/bundlebuilder.py
+++ b/Lib/plat-mac/bundlebuilder.py
@@ -171,10 +171,10 @@ class BundleBuilder(Defaults):
files = self.files[:]
for path in self.resources:
files.append((path, pathjoin("Contents", "Resources",
- os.path.basename(path))))
+ os.path.basename(os.path.normpath(path)))))
for path in self.libs:
files.append((path, pathjoin("Contents", "Frameworks",
- os.path.basename(path))))
+ os.path.basename(os.path.normpath(path)))))
if self.symlink:
self.message("Making symbolic links", 1)
msg = "Making symlink from"