diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2005-07-14 19:20:50 -0600 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-15 11:38:24 -0700 |
commit | 9dce3c0617ce7065eec53e8e3bb68c571f7d6ee5 (patch) | |
tree | ba48a6b2a0213909a61e853c9c724250f7736fa3 /Makefile | |
parent | d7b8a164e4dff577f84eb89d6b1ac036ce973fc9 (diff) | |
download | git-9dce3c0617ce7065eec53e8e3bb68c571f7d6ee5.tar.gz git-9dce3c0617ce7065eec53e8e3bb68c571f7d6ee5.tar.xz |
[PATCH] Use gzip -f when building the git-core tarball
This allows rebuilding the tarball when it is already present
without having to answer annoying questions from gzip
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -184,7 +184,7 @@ dist: git-core.spec git-tar-tree @cp git-core.spec $(GIT_TARNAME) tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec @rm -rf $(GIT_TARNAME) - gzip -9 $(GIT_TARNAME).tar + gzip -f -9 $(GIT_TARNAME).tar rpm: dist $(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz |