mirror of
https://github.com/python/cpython.git
synced 2025-11-03 11:23:31 +00:00
When building HTML releases, refer to */*.css and */*.html instead of
???/*.css and ???/*.html -- need to pick up the Distutils manuals!
This commit is contained in:
parent
3abb104356
commit
e9792c4563
1 changed files with 3 additions and 3 deletions
|
|
@ -276,18 +276,18 @@ postscript-$(PAPER)-$(RELEASE).zip: ps
|
||||||
|
|
||||||
html-$(RELEASE).tgz: html
|
html-$(RELEASE).tgz: html
|
||||||
(cd $(HTMLDIR); \
|
(cd $(HTMLDIR); \
|
||||||
tar cf - *index.html ???/*.css ???/*.html */*.gif) \
|
tar cf - *index.html */*.css */*.html */*.gif) \
|
||||||
| gzip -9 >$@
|
| gzip -9 >$@
|
||||||
|
|
||||||
html-$(RELEASE).tar.bz2: html
|
html-$(RELEASE).tar.bz2: html
|
||||||
(cd $(HTMLDIR); \
|
(cd $(HTMLDIR); \
|
||||||
tar cf - *index.html ???/*.css ???/*.html */*.gif) \
|
tar cf - *index.html */*.css */*.html */*.gif) \
|
||||||
| bzip2 -9 >$@
|
| bzip2 -9 >$@
|
||||||
|
|
||||||
html-$(RELEASE).zip: html
|
html-$(RELEASE).zip: html
|
||||||
rm -f $@
|
rm -f $@
|
||||||
(cd $(HTMLDIR); \
|
(cd $(HTMLDIR); \
|
||||||
zip -q -9 ../$@ *index.html ???/*.css ???/*.html */*.gif)
|
zip -q -9 ../$@ *index.html */*.css */*.html */*.gif)
|
||||||
|
|
||||||
longhtml-$(RELEASE).zip: longhtml
|
longhtml-$(RELEASE).zip: longhtml
|
||||||
rm -f $@
|
rm -f $@
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue