diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2015-11-24 16:22:24 -0500 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2016-03-24 21:07:00 +0000 |
commit | e979f09b6af68fff3740bd53e013cbcdcccde8e1 (patch) | |
tree | 691a507e62b272de476aa4b36b7242d3c36a423b | |
parent | d626faa06e3258a11257109f13db0ec485943713 (diff) |
build: Set osx permissions in the dmg to make Gatekeeper happy
Github-Pull: #7092
Rebased-From: 392d3c5846db69dcbcc448d7504d0e4e73832ecf
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index ab68d8fa6d..cff6dd2780 100644 --- a/Makefile.am +++ b/Makefile.am @@ -111,7 +111,7 @@ $(APP_DIST_DIR)/Applications: $(APP_DIST_EXTRAS): $(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/Bitcoin-Qt $(OSX_DMG): $(APP_DIST_EXTRAS) - $(GENISOIMAGE) -no-cache-inodes -D -l -probe -V "Bitcoin-Core" -no-pad -r -apple -o $@ dist + $(GENISOIMAGE) -no-cache-inodes -D -l -probe -V "Bitcoin-Core" -no-pad -r -dir-mode 0755 -apple -o $@ dist $(APP_DIST_DIR)/.background/$(OSX_BACKGROUND_IMAGE): contrib/macdeploy/$(OSX_BACKGROUND_IMAGE) $(MKDIR_P) $(@D) |