From 1727c71f8aa1ebc6e9448701b0dc18683d43ea32 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 8 Dec 2012 15:46:28 -0400 Subject: [PATCH] better message --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e9077eb072..6a94d33d2f 100644 --- a/Makefile +++ b/Makefile @@ -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)