aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-05-31 16:36:50 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-05-31 16:36:50 -0400
commitb2a32f7773fcc6f8765238f5ea6f50a9a9702269 (patch)
tree8e1a9e7803323ae2ec390081cbc9f4c421cdd8dd /Makefile
parent09e1ad4221a780a951154fc9bc733effee872c65 (diff)
compress standalone tarball with gzip --rsyncable
This should cut down on transfer overhead; in particular the arm autobuilder is on a slow pipe.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7fd01ab9c..0058a3ee2 100644
--- a/Makefile
+++ b/Makefile
@@ -138,7 +138,7 @@ linuxstandalone-nobuild: Build/Standalone Build/LinuxMkLibs
cd tmp/git-annex.linux && find . -type f > git-annex.MANIFEST
cd tmp/git-annex.linux && find . -type l >> git-annex.MANIFEST
- cd tmp && tar czf git-annex-standalone-$(shell dpkg --print-architecture).tar.gz git-annex.linux
+ cd tmp && tar c git-annex.linux | gzip -9 --rsyncable > git-annex-standalone-$(shell dpkg --print-architecture).tar.gz
# Run this target to build git-annex-standalone*.deb
debianstandalone: dpkg-buildpackage-F