projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ddc82ea
)
make sure Info.plist has a CFBundleIdentifier entry
author
Just van Rossum
<just@letterror.com>
Mon, 13 Jan 2003 23:30:04 +0000
(23:30 +0000)
committer
Just van Rossum
<just@letterror.com>
Mon, 13 Jan 2003 23:30:04 +0000
(23:30 +0000)
Lib/plat-mac/bundlebuilder.py
patch
|
blob
|
history
diff --git
a/Lib/plat-mac/bundlebuilder.py
b/Lib/plat-mac/bundlebuilder.py
index 749d85104b9308adda53745f259f373e56597f8b..45642bda1f742fc3b705020b3ccf8d098a541d59 100755
(executable)
--- a/
Lib/plat-mac/bundlebuilder.py
+++ b/
Lib/plat-mac/bundlebuilder.py
@@
-127,6
+127,8
@@
class BundleBuilder(Defaults):
else:
self.creator = "????"
plist.CFBundleSignature = self.creator
+ if not hasattr(plist, "CFBundleIdentifier"):
+ plist.CFBundleIdentifier = self.name
def build(self):
"""Build the bundle."""