summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2004-07-05 14:23:03 +0000
committerSimon Tatham <anakin@pobox.com>2004-07-05 14:23:03 +0000
commit6ec4c030855104a249b3c9dcafd361b452a76074 (patch)
treebeb437072f5f42cde7a6d8f016e3dfd6a624134a /Makefile
parent9b4a26846a2ab033067d27c42f2034e9f74cd02b (diff)
downloadhalibut-6ec4c030855104a249b3c9dcafd361b452a76074.zip
halibut-6ec4c030855104a249b3c9dcafd361b452a76074.tar.gz
halibut-6ec4c030855104a249b3c9dcafd361b452a76074.tar.bz2
halibut-6ec4c030855104a249b3c9dcafd361b452a76074.tar.xz
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]
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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