diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-05-31 19:27:59 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-05-31 19:27:59 (GMT) |
commit | 2f50e90818f17dd20760c9eb0854b603634f157d (patch) | |
tree | b93eaa5f79d158ef668d6e2c0da5d65e8c64b5dd /Doc/dist/dist.tex | |
parent | 92816de18e3456f8304a1aaa6f28b151858a6e5d (diff) | |
download | cpython-2f50e90818f17dd20760c9eb0854b603634f157d.zip cpython-2f50e90818f17dd20760c9eb0854b603634f157d.tar.gz cpython-2f50e90818f17dd20760c9eb0854b603634f157d.tar.bz2 |
SF patch 959726: sdist versus SVN
The disutils sdist command now ignores .svn directories.
Diffstat (limited to 'Doc/dist/dist.tex')
-rw-r--r-- | Doc/dist/dist.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/dist/dist.tex b/Doc/dist/dist.tex index da9341e..7b91809 100644 --- a/Doc/dist/dist.tex +++ b/Doc/dist/dist.tex @@ -1066,7 +1066,7 @@ fully processed the manifest template, we remove files that should not be included in the source distribution: \begin{itemize} \item all files in the Distutils ``build'' tree (default \file{build/}) -\item all files in directories named \file{RCS} or \file{CVS} +\item all files in directories named \file{RCS}, \file{CVS} or \file{.svn} \end{itemize} Now we have our complete list of files, which is written to the manifest for future reference, and then used to build the source distribution @@ -1098,8 +1098,8 @@ Distutils source distribution: included by the previous two steps, so it's important that the \code{prune} command in the manifest template comes after the \code{recursive-include} command -\item exclude the entire \file{build} tree, and any \file{RCS} or - \file{CVS} directories +\item exclude the entire \file{build} tree, and any \file{RCS}, + \file{CVS} and \file{.svn} directories \end{enumerate} Just like in the setup script, file and directory names in the manifest template should always be slash-separated; the Distutils will take care |