fix permissions in application bundle
Use INSTALL_DATA rather than INSTALL for copying non executable files in OS X application bundle. Tested by running "all appbundle" make target and trying the resulting application bundle, host system is OS X 10.9.2 .
This commit is contained in:
parent
d3c3210fa3
commit
76cee181d3
1 changed files with 2 additions and 2 deletions
|
@ -66,11 +66,11 @@ $(OSX_APP)/Contents/Resources/empty.lproj:
|
|||
|
||||
$(OSX_APP)/Contents/Info.plist: $(OSX_PLIST)
|
||||
$(MKDIR_P) $(@D)
|
||||
$(INSTALL) $< $@
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
$(OSX_APP)/Contents/Resources/bitcoin.icns: $(OSX_INSTALLER_ICONS)
|
||||
$(MKDIR_P) $(@D)
|
||||
$(INSTALL) $< $@
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
$(OSX_APP)/Contents/MacOS/Bitcoin-Qt: $(BITCOIN_QT_BIN)
|
||||
$(MKDIR_P) $(@D)
|
||||
|
|
Loading…
Reference in a new issue