diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2015-11-24 16:22:24 -0500 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2015-11-24 16:22:24 -0500 |
commit | 392d3c5846db69dcbcc448d7504d0e4e73832ecf (patch) | |
tree | b6619ec1593e0c5e95f6a87d42ed0b2397b5bd13 | |
parent | b19fe277dd6208b80fea837adf9e64631b07f946 (diff) |
build: Set osx permissions in the dmg to make Gatekeeper happy
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 303ad3b06f..b2b7811729 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) |