From 444604889b435d4092e081443c1664c24aa7290e Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Tue, 1 Jan 2002 20:28:29 +0000 Subject: [PATCH] * Makefile.in: Duh. Actually use bzip2 to create the tarball. Don't just change the name. --- winsup/doc/ChangeLog | 5 +++++ winsup/doc/Makefile.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/winsup/doc/ChangeLog b/winsup/doc/ChangeLog index 5e5e3285c..6951b080b 100644 --- a/winsup/doc/ChangeLog +++ b/winsup/doc/ChangeLog @@ -1,3 +1,8 @@ +2002-01-01 Christopher Faylor + + * Makefile.in: Duh. Actually use bzip2 to create the tarball. Don't + just change the name. + 2002-01-01 Christopher Faylor * Makefile.in: Make .bz2 tarball. diff --git a/winsup/doc/Makefile.in b/winsup/doc/Makefile.in index 94fb77e37..4be5f06e5 100644 --- a/winsup/doc/Makefile.in +++ b/winsup/doc/Makefile.in @@ -118,4 +118,4 @@ TBDEPS = cygwin-ug-net/cygwin-ug-net.html cygwin-api/cygwin-api.html tarball : cygwin-docs.tar.bz2 cygwin-docs.tar.bz2 : $(TBFILES) $(TBDEPS) - tar cf - $(TBFILES) $(TBDIRS) | gzip -9 > cygwin-docs.tar.bz2 + find $(TBFILES) $(TBDIRS) \! -type d | sort | tar -T - -cf - | bzip2 > cygwin-docs.tar.bz2