diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-10-27 23:12:01 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-10-27 23:12:01 (GMT) |
commit | c7c71ff87cf4e8083aaae9564d2f1785f36fd3dc (patch) | |
tree | a0a94a9aca7306448297d3a5afedc4e6cec6190e /Doc | |
parent | 70ec8ee2ed718de3ce3c6b47238cc6e688b87f7c (diff) | |
download | cpython-c7c71ff87cf4e8083aaae9564d2f1785f36fd3dc.zip cpython-c7c71ff87cf4e8083aaae9564d2f1785f36fd3dc.tar.gz cpython-c7c71ff87cf4e8083aaae9564d2f1785f36fd3dc.tar.bz2 |
Merged revisions 75893 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75893 | tarek.ziade | 2009-10-28 00:06:10 +0100 (Wed, 28 Oct 2009) | 1 line
Fixed #1180: Option to ignore ~/.pydistutils.cfg in Distutils
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ACKS.txt | 1 | ||||
-rw-r--r-- | Doc/distutils/builtdist.rst | 3 | ||||
-rw-r--r-- | Doc/install/index.rst | 3 |
3 files changed, 6 insertions, 1 deletions
diff --git a/Doc/ACKS.txt b/Doc/ACKS.txt index 0d796ad..2dd3b55 100644 --- a/Doc/ACKS.txt +++ b/Doc/ACKS.txt @@ -208,6 +208,7 @@ docs@python.org), and we'll be glad to correct the problem. * Mats Wichmann * Gerry Wiener * Timothy Wild + * Paul Winkler * Collin Winter * Blake Winton * Dan Wolfe diff --git a/Doc/distutils/builtdist.rst b/Doc/distutils/builtdist.rst index e58937d..c7b756b 100644 --- a/Doc/distutils/builtdist.rst +++ b/Doc/distutils/builtdist.rst @@ -241,7 +241,8 @@ tedious and error-prone, so it's usually best to put them in the setup configuration file, :file:`setup.cfg`\ ---see section :ref:`setup-config`. If you distribute or package many Python module distributions, you might want to put options that apply to all of them in your personal Distutils configuration -file (:file:`~/.pydistutils.cfg`). +file (:file:`~/.pydistutils.cfg`). If you want to temporarily disable +this file, you can pass the --no-user-cfg option to setup.py. There are three steps to building a binary RPM package, all of which are handled automatically by the Distutils: diff --git a/Doc/install/index.rst b/Doc/install/index.rst index 0751291..2231058 100644 --- a/Doc/install/index.rst +++ b/Doc/install/index.rst @@ -691,6 +691,9 @@ And on Windows, the configuration files are: | local | :file:`setup.cfg` | \(3) | +--------------+-------------------------------------------------+-------+ +On all platforms, the "personal" file can be temporarily disabled by +passing the `--no-user-cfg` option. + Notes: (1) |