diff options
| author | Chun Kuan Lee <[email protected]> | 2018-06-13 19:53:21 +0000 |
|---|---|---|
| committer | Chun Kuan Lee <[email protected]> | 2018-06-14 19:43:12 +0000 |
| commit | cf01fd6f9c1a31d16884cd1a1a686602b4b47027 (patch) | |
| tree | ffec5e5ec5f7d680345f7d8530a8cef991df9dd0 | |
| parent | Merge #13441: Prevent shared conf files from failing with different available... (diff) | |
| download | discoin-cf01fd6f9c1a31d16884cd1a1a686602b4b47027.tar.xz discoin-cf01fd6f9c1a31d16884cd1a1a686602b4b47027.zip | |
Avoid concurrency issue
| -rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 0ed3dd289..f3f3302fc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -95,9 +95,9 @@ $(OSX_APP)/Contents/Resources/bitcoin.icns: $(OSX_INSTALLER_ICONS) $(MKDIR_P) $(@D) $(INSTALL_DATA) $< $@ -$(OSX_APP)/Contents/MacOS/Bitcoin-Qt: $(BITCOIN_QT_BIN) +$(OSX_APP)/Contents/MacOS/Bitcoin-Qt: all-recursive $(MKDIR_P) $(@D) - STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $< $@ + STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIN_QT_BIN) $@ $(OSX_APP)/Contents/Resources/Base.lproj/InfoPlist.strings: $(MKDIR_P) $(@D) |