diff options
author | Joey Hess <joey@kitenet.net> | 2012-12-08 15:46:28 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-12-08 15:54:46 -0400 |
commit | 9434d55abdf373d896f01799e806d29c21ad75f4 (patch) | |
tree | 5f9c7d914793ce065827a704a6014e7d243519e5 | |
parent | 2ee6ce68feefa2a46051e6116e772f72d2ecfd91 (diff) |
better message
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -161,7 +161,7 @@ linuxstandalone: zcat standalone/licences.gz > $(LINUXSTANDALONE_DEST)/LICENSE for bin in $(THIRDPARTY_BINS); do \ - cp "$$(which "$$bin")" "$(LINUXSTANDALONE_DEST)/bin/"; \ + cp "$$(which "$$bin")" "$(LINUXSTANDALONE_DEST)/bin/" || echo "failed to install $$bin"; \ done install -d "$(LINUXSTANDALONE_DEST)/git-core" @@ -200,7 +200,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)"; \ + cp "$$(which "$$bin")" "$(OSXAPP_BASE)" || echo "failed to install $$bin"; \ done (cd "$(shell git --exec-path)" && tar c .) | (cd "$(OSXAPP_BASE)" && tar x) |