diff options
author | Joey Hess <joey@kitenet.net> | 2012-10-16 17:02:24 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-10-16 17:02:24 -0400 |
commit | 85531421f9fa726b59c37a3a5701ea9ca255d43d (patch) | |
tree | 2f4bc4facac23e469bb174d2bab21cb3b7fbb0a0 | |
parent | 07523de5ac89e30dc130c6e42af99cc72724f850 (diff) |
don't continue with missing bin
We want the standalone builds to be complete and reproducible, so a missing
bin is an error.
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |