Skip to content

Commit

Permalink
Bugfix: Keep ZIP temp files out of dist dir so DMG can be made in par…
Browse files Browse the repository at this point in the history
…allel
  • Loading branch information
luke-jr committed Mar 13, 2024
1 parent b46d43d commit fb3b72a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ $(OSX_DMG): deploydir

$(OSX_ZIP): deploydir
if [ -n "$(SOURCE_DATE_EPOCH)" ]; then find $(APP_DIST_DIR) -exec touch -d @$(SOURCE_DATE_EPOCH) {} +; fi
cd $(APP_DIST_DIR) && find . | sort | $(ZIP) -X@ $@
cd $(APP_DIST_DIR) && find . | sort | $(ZIP) --temp-path .. -X@ $@

$(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/Bitcoin-Qt: $(OSX_APP_BUILT) $(OSX_PACKAGING)
INSTALL_NAME_TOOL=$(INSTALL_NAME_TOOL) OTOOL=$(OTOOL) STRIP=$(STRIP) $(PYTHON) $(OSX_DEPLOY_SCRIPT) $(OSX_APP) $(OSX_VOLNAME) -translations-dir=$(QT_TRANSLATION_DIR)
Expand Down

0 comments on commit fb3b72a

Please sign in to comment.