diff options
author | Georg Brandl <georg@python.org> | 2008-10-02 16:25:57 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-10-02 16:25:57 (GMT) |
commit | 8652389b7bd87987b4c8cb02b5fb12d0d50724e2 (patch) | |
tree | bb773ccf4fff71a3c8cc02c72016827cfe25f323 /Doc/Makefile | |
parent | e15551bf3899a85659b07cd6d75ffe47b33f392b (diff) | |
download | cpython-8652389b7bd87987b4c8cb02b5fb12d0d50724e2.zip cpython-8652389b7bd87987b4c8cb02b5fb12d0d50724e2.tar.gz cpython-8652389b7bd87987b4c8cb02b5fb12d0d50724e2.tar.bz2 |
Some Doc tweaks.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index c1fcf6e..2b2fd14 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -111,7 +111,7 @@ dist: # archive the HTML make html - cp -a build/html dist/python$(DISTVERSION)-docs-html + cp -pPR build/html dist/python$(DISTVERSION)-docs-html tar -C dist -cf dist/python$(DISTVERSION)-docs-html.tar python$(DISTVERSION)-docs-html bzip2 -9 -k dist/python$(DISTVERSION)-docs-html.tar (cd dist; zip -q -r -9 python$(DISTVERSION)-docs-html.zip python$(DISTVERSION)-docs-html) @@ -120,7 +120,7 @@ dist: # archive the text build make text - cp -a build/text dist/python$(DISTVERSION)-docs-text + cp -pPR build/text dist/python$(DISTVERSION)-docs-text tar -C dist -cf dist/python$(DISTVERSION)-docs-text.tar python$(DISTVERSION)-docs-text bzip2 -9 -k dist/python$(DISTVERSION)-docs-text.tar (cd dist; zip -q -r -9 python$(DISTVERSION)-docs-text.zip python$(DISTVERSION)-docs-text) |