diff options
author | Andrew Kuchling <amk@amk.ca> | 2013-11-10 23:11:00 (GMT) |
---|---|---|
committer | Andrew Kuchling <amk@amk.ca> | 2013-11-10 23:11:00 (GMT) |
commit | 2a1838b9dfa6f825ee272ec8bef683394e845830 (patch) | |
tree | 38443cd0914b1b8a763fcf7ce111f48cb7c1bf7b /Doc/distutils | |
parent | ce4179d0226768988965ac238ad15791cd377def (diff) | |
download | cpython-2a1838b9dfa6f825ee272ec8bef683394e845830.zip cpython-2a1838b9dfa6f825ee272ec8bef683394e845830.tar.gz cpython-2a1838b9dfa6f825ee272ec8bef683394e845830.tar.bz2 |
Issue #19544 and Issue #1180: Restore global option to ignore ~/.pydistutils.cfg in Distutils, accidentally removed in backout of distutils2 changes.
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/builtdist.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/distutils/builtdist.rst b/Doc/distutils/builtdist.rst index d1ab7db..83c68ae 100644 --- a/Doc/distutils/builtdist.rst +++ b/Doc/distutils/builtdist.rst @@ -239,7 +239,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 :option:`--no-user-cfg` option to :file:`setup.py`. There are three steps to building a binary RPM package, all of which are handled automatically by the Distutils: |