don't continue with missing bin
We want the standalone builds to be complete and reproducible, so a missing bin is an error.
This commit is contained in:
parent
1da89079f2
commit
053e72cbfa
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -157,7 +157,7 @@ linuxstandalone:
|
|||
zcat standalone/licences.gz > $(LINUXSTANDALONE_DEST)/LICENSE
|
||||
|
||||
for bin in $(THIRDPARTY_BINS); do \
|
||||
cp "$$(which "$$bin")" "$(LINUXSTANDALONE_DEST)/bin/" || echo "$$bin not available; skipping"; \
|
||||
cp "$$(which "$$bin")" "$(LINUXSTANDALONE_DEST)/bin/"; \
|
||||
done
|
||||
|
||||
install -d "$(LINUXSTANDALONE_DEST)/git-core"
|
||||
|
@ -197,7 +197,7 @@ osxapp:
|
|||
cp $(OSXAPP_BASE)/LICENSE $(GIT_ANNEX_TMP_BUILD_DIR)/build-dmg/LICENSE.txt
|
||||
|
||||
for bin in $(THIRDPARTY_BINS); do \
|
||||
cp "$$(which "$$bin")" "$(OSXAPP_BASE)/bin/" || echo "$$bin not available; skipping"; \
|
||||
cp "$$(which "$$bin")" "$(OSXAPP_BASE)/bin/"; \
|
||||
done
|
||||
|
||||
install -d "$(OSXAPP_BASE)/git-core"
|
||||
|
|
Loading…
Reference in a new issue