Skip to content

Commit

Permalink
[PATCH] Use gzip -f when building the git-core tarball
Browse files Browse the repository at this point in the history
This allows rebuilding the tarball when it is already present
without having to answer annoying questions from gzip

Signed-off-by: Eric W. Biederman <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
ebiederm authored and Linus Torvalds committed Jul 15, 2005
1 parent d7b8a16 commit 9dce3c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9dce3c0

Please sign in to comment.