Mac PackageMaker - 允许重新定位问题
我对“允许重新定位”(包:Xxx、组件)有两个问题:
它像魔术一样不断打开。我怎样才能避免这种情况?我需要将其关闭(我知道不是最理想的 - 请参阅 #2)
如果启用“允许重新定位”,安装程序首先将 .app 放入 /Applications,但然后重新定位它,将其复制到我的原始 .app 之上在我的开发树中。如何在开发过程中防止这种情况发生,而不是在不同的计算机上测试安装程序?
I have two issues with Allow Relocation (Package: Xxx, Components):
It keeps getting turned on as if by magic. How can I avoid this? I need it off (sub-optimal, I know - see #2)
If Allow Relocation is on, the Installer first places the .app into /Applications, but then relocates it, copying it on top of my original .app in my development tree. How can I prevent this from happening during development, short of testing the installer on a different machine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PackageMaker 手册页说
PackageMaker manpage says
在 PackageMaker 3 中,默认启用重定位。但是,有一些方法可以禁用它。
如果您使用的是 GUI 模式,只需取消选中
“允许重新定位”
复选框即可。如果您使用命令行构建,请使用 PackageMaker 手册页中提到的
--no-relocate
或-w
标志。In PackageMaker 3, relocation is enabled by default. However, there are ways to disable it.
If you are using GUI mode, just uncheck the checkbox
"Allow Relocation"
.If you are using command-line build, use the flags
--no-relocate
or-w
as mentioned in PackageMaker man page.