cocoa: undo hack of "-64" suffix on app names
Commit 60101618db
seems to address the real problem.
This commit is contained in:
parent
60101618db
commit
add50ab436
|
@ -175,14 +175,7 @@
|
||||||
creator
|
creator
|
||||||
|
|
||||||
"CFBundleIdentifier"
|
"CFBundleIdentifier"
|
||||||
(format "org.racket-lang.~a~a"
|
(format "org.racket-lang.~a" (path->string name)))]
|
||||||
(path->string name)
|
|
||||||
(if (fixnum? (expt 2 32))
|
|
||||||
;; Add a "-64" suffix for 64-bit, because Lion seems
|
|
||||||
;; to get confused by 32-bit and 64-bit apps with the same
|
|
||||||
;; id (see PR 12135)
|
|
||||||
"-64"
|
|
||||||
"")))]
|
|
||||||
[new-plist (if uti-exports
|
[new-plist (if uti-exports
|
||||||
(plist-replace
|
(plist-replace
|
||||||
new-plist
|
new-plist
|
||||||
|
|
|
@ -86,11 +86,7 @@
|
||||||
(assoc-pair "CFBundleExecutable"
|
(assoc-pair "CFBundleExecutable"
|
||||||
,app-name)
|
,app-name)
|
||||||
(assoc-pair "CFBundleIdentifier"
|
(assoc-pair "CFBundleIdentifier"
|
||||||
,(format "org.racket-lang.~a~a" app-name
|
,(format "org.racket-lang.~a" app-name))
|
||||||
(if (fixnum? (expt 2 32))
|
|
||||||
;; See comment on similar code in compiler/embed-unit:
|
|
||||||
"-64"
|
|
||||||
"")))
|
|
||||||
,@(if app?
|
,@(if app?
|
||||||
`((assoc-pair "CFBundleIconFile"
|
`((assoc-pair "CFBundleIconFile"
|
||||||
,app-name))
|
,app-name))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user