diff options
author | Joey Hess <joey@kitenet.net> | 2012-09-28 18:29:36 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-09-28 18:29:36 -0400 |
commit | 169018a5c822a19109aa00742a3a16b30eaf8995 (patch) | |
tree | 002e53d15df40d87b201f71530d20fb780e1101e /Makefile | |
parent | 1f6e6f9abdfccb7e5d66fdb5875f7fa20fc15f6b (diff) |
fixes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -148,7 +148,7 @@ linuxstandalone: $(bins) cp git-annex "$(LINUXSTANDALONE_DEST)/bin/" strip "$(LINUXSTANDALONE_DEST)/bin/git-annex" ln -sf git-annex "$(LINUXSTANDALONE_DEST)/bin/git-annex-shell" - gzcat doc/license/git-annex-osx.app-licences.gz > $(LINUXSTANDALONE_DEST)/LICENSE + zcat doc/license/git-annex-osx.app-licences.gz > $(LINUXSTANDALONE_DEST)/LICENSE for bin in $(THIRDPARTY_BINS); do \ cp "$$(which "$$bin")" "$(LINUXSTANDALONE_DEST)/bin/" || echo "$$bin not available; skipping"; \ @@ -171,6 +171,8 @@ linuxstandalone: $(bins) sort "$(LINUXSTANDALONE_DEST)/libdirs.tmp" | uniq > "$(LINUXSTANDALONE_DEST)/libdirs" rm -f "$(LINUXSTANDALONE_DEST)/libdirs.tmp" + tar czf $(GIT_ANNEX_TMP_BUILD_DIR)/git-annex-standalone-$(dpkg --print-architecture).tar.gz $(LINUXSTANDALONE_DEST) + OSXAPP_DEST=$(GIT_ANNEX_TMP_BUILD_DIR)/build-dmg/git-annex.app OSXAPP_BASE=$(OSXAPP_DEST)/Contents/MacOS osxapp: $(bins) |