diff options
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/doc/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/doc/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/doc/ChangeLog b/winsup/doc/ChangeLog index 5e5e3285c..6951b080b 100644 --- a/winsup/doc/ChangeLog +++ b/winsup/doc/ChangeLog @@ -1,5 +1,10 @@ 2002-01-01 Christopher Faylor <cgf@redhat.com> + * Makefile.in: Duh. Actually use bzip2 to create the tarball. Don't + just change the name. + +2002-01-01 Christopher Faylor <cgf@redhat.com> + * Makefile.in: Make .bz2 tarball. 2001-12-11 Christopher Faylor <cgf@redhat.com> 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 |