This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Doc: make clean and make update do not delete or update Doc/tools
Type: behavior Stage:
Components: Build, Documentation Versions: Python 3.1, Python 3.2, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: flox, georg.brandl
Priority: normal Keywords:

Created on 2009-12-30 17:26 by flox, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg97046 - (view) Author: Florent Xicluna (flox) * (Python committer) Date: 2009-12-30 17:26
In the Doc/ directory, the "make ..." commands do not behave as expected.

*make clean*
It should remove all tools in "tools" directory: docutils, jinja2,
pygments, sphinx.
Currently it removes only "tools/sphinx"

*make update*
It is supposed to "update the Subversion checkouts in `tools/`".
Basically, it does "svn update" for each 4 external tools.
But it is pointless, since these directory are sticked to tag versions.
IMHO, it should be an alias for:
"make clean && make checkout" (if *make clean* is fixed)
msg97049 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-12-30 18:36
Fixed in r77152.
History
Date User Action Args
2022-04-11 14:56:55adminsetgithub: 51851
2009-12-30 18:36:17georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg97049
2009-12-30 17:26:16floxcreate