diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-05-31 16:36:50 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-05-31 16:36:50 -0400 |
commit | b2a32f7773fcc6f8765238f5ea6f50a9a9702269 (patch) | |
tree | 8e1a9e7803323ae2ec390081cbc9f4c421cdd8dd /Makefile | |
parent | 09e1ad4221a780a951154fc9bc733effee872c65 (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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |