Skip to content

Commit cf01fd6

Browse files
committed
Avoid concurrency issue
1 parent 4a7e64f commit cf01fd6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ $(OSX_APP)/Contents/Resources/bitcoin.icns: $(OSX_INSTALLER_ICONS)
9595
$(MKDIR_P) $(@D)
9696
$(INSTALL_DATA) $< $@
9797

98-
$(OSX_APP)/Contents/MacOS/Bitcoin-Qt: $(BITCOIN_QT_BIN)
98+
$(OSX_APP)/Contents/MacOS/Bitcoin-Qt: all-recursive
9999
$(MKDIR_P) $(@D)
100-
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $< $@
100+
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIN_QT_BIN) $@
101101

102102
$(OSX_APP)/Contents/Resources/Base.lproj/InfoPlist.strings:
103103
$(MKDIR_P) $(@D)

0 commit comments

Comments
 (0)