Apparently (according to a user) WinZip complains of `trailing
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 5 Jul 2004 14:23:03 +0000 (14:23 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 5 Jul 2004 14:23:03 +0000 (14:23 +0000)
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.

git-svn-id: svn://svn.tartarus.org/sgt/halibut@4323 cda61777-01e9-0310-a592-d414129be87e

Makefile

index 8ca052a..280497f 100644 (file)
--- 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