diff options
author | Christopher Faylor <me@cgf.cx> | 2002-01-01 20:28:29 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-01-01 20:28:29 +0000 |
commit | 444604889b435d4092e081443c1664c24aa7290e (patch) | |
tree | 882193dd3944797f4bbdd0617222bd7b310a293b | |
parent | 5d29717b6b29ba000922ef924561ebaee98c3ab0 (diff) | |
download | cygnal-444604889b435d4092e081443c1664c24aa7290e.tar.gz cygnal-444604889b435d4092e081443c1664c24aa7290e.tar.bz2 cygnal-444604889b435d4092e081443c1664c24aa7290e.zip |
* Makefile.in: Duh. Actually use bzip2 to create the tarball. Don't just
change the name.
-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 |