From 388676d3acdb6c3bfe9c7a0483b1ac9c90021823 Mon Sep 17 00:00:00 2001 From: Andrea D'Amore Date: Mon, 24 Mar 2014 17:17:29 +0100 Subject: [PATCH] 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 . --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 36afa0a31..ee7a1e797 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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/Dogecoin-Qt: $(BITCOIN_QT_BIN) $(MKDIR_P) $(@D)