diff options
author | Fred Drake <fdrake@acm.org> | 2000-09-08 21:54:44 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-09-08 21:54:44 (GMT) |
commit | 90f876798f1ddb2b3005131acb40d17a9e5f8f92 (patch) | |
tree | 1e7480a0d5d56f72985117a5f9c9a3cbbad32a78 /Doc/Makefile | |
parent | a61bfa84c9697ebcb7804fb212f87851763232a4 (diff) | |
download | cpython-90f876798f1ddb2b3005131acb40d17a9e5f8f92.zip cpython-90f876798f1ddb2b3005131acb40d17a9e5f8f92.tar.gz cpython-90f876798f1ddb2b3005131acb40d17a9e5f8f92.tar.bz2 |
When building the HTML packages, make sure we pick up all the HTML files
at the top level of the tree.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 2da6fab..613221f 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -279,18 +279,18 @@ postscript-$(PAPER)-$(RELEASE).zip: ps html-$(RELEASE).tgz: html (cd $(HTMLDIR); \ - tar cf - *index.html */*.css */*.html */*.gif) \ + tar cf - *.html */*.css */*.html */*.gif) \ | gzip -9 >$@ html-$(RELEASE).tar.bz2: html (cd $(HTMLDIR); \ - tar cf - *index.html */*.css */*.html */*.gif) \ + tar cf - *.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 ../$@ *.html */*.css */*.html */*.gif) longhtml-$(RELEASE).zip: longhtml rm -f $@ |