From e9792c4563a332bca6598bc444b6a30ed34ae724 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Fri, 28 Apr 2000 17:09:17 +0000 Subject: [PATCH] When building HTML releases, refer to */*.css and */*.html instead of ???/*.css and ???/*.html -- need to pick up the Distutils manuals! --- Doc/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/Makefile b/Doc/Makefile index 89f8de840e3..ee1023c8bf9 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -276,18 +276,18 @@ postscript-$(PAPER)-$(RELEASE).zip: ps html-$(RELEASE).tgz: html (cd $(HTMLDIR); \ - tar cf - *index.html ???/*.css ???/*.html */*.gif) \ + tar cf - *index.html */*.css */*.html */*.gif) \ | gzip -9 >$@ html-$(RELEASE).tar.bz2: html (cd $(HTMLDIR); \ - tar cf - *index.html ???/*.css ???/*.html */*.gif) \ + tar cf - *index.html */*.css */*.html */*.gif) \ | bzip2 -9 >$@ html-$(RELEASE).zip: html rm -f $@ (cd $(HTMLDIR); \ - zip -q -9 ../$@ *index.html ???/*.css ???/*.html */*.gif) + zip -q -9 ../$@ *index.html */*.css */*.html */*.gif) longhtml-$(RELEASE).zip: longhtml rm -f $@