Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-01-01 23:28:29 +0300
committerChristopher Faylor <me@cgf.cx>2002-01-01 23:28:29 +0300
commit444604889b435d4092e081443c1664c24aa7290e (patch)
tree882193dd3944797f4bbdd0617222bd7b310a293b
parent5d29717b6b29ba000922ef924561ebaee98c3ab0 (diff)
* Makefile.in: Duh. Actually use bzip2 to create the tarball. Don't just
change the name.
-rw-r--r--winsup/doc/ChangeLog5
-rw-r--r--winsup/doc/Makefile.in2
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