better message
This commit is contained in:
parent
86e5da4c92
commit
457d34696f
1 changed files with 2 additions and 2 deletions
4
Makefile
4
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)
|
||||
|
|
Loading…
Reference in a new issue