From 6ec4c030855104a249b3c9dcafd361b452a76074 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Mon, 5 Jul 2004 14:23:03 +0000 Subject: Apparently (according to a user) WinZip complains of `trailing garbage' when handling a GNU tar archive. Using the -o flag when building the tar file creates an archive which the user said WinZip had no trouble with, and GNU tar seems just as happy with that, so `make release' now uses -o. [originally from svn r4323] --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8ca052a..280497f 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ release: ) > reltmp/$(RELDIR)/manifest; \ echo "-DVERSION=\"$(VERSION)\"" > reltmp/$(RELDIR)/version; \ fi - tar chzvCf reltmp - $(RELDIR) > $(RELDIR).tar.gz + tar chzvoCf reltmp - $(RELDIR) > $(RELDIR).tar.gz rm -rf reltmp else -- cgit v1.1