[Python-checkins] devguide: When a new library is made available which is a dependency, you need

brett.cannon python-checkins at python.org
Mon Mar 14 15:57:35 CET 2011


http://hg.python.org/devguide/rev/9bacb56f08e7
changeset:   393:9bacb56f08e7
user:        Brett Cannon <brett at python.org>
date:        Mon Mar 14 10:57:26 2011 -0400
summary:
  When a new library is made available which is a dependency, you need
to also run configure.

Closes issue 11497

files:
  setup.rst

diff --git a/setup.rst b/setup.rst
--- a/setup.rst
+++ b/setup.rst
@@ -117,8 +117,8 @@
 
 Do take note of what modules were **not** built as stated at the end of your
 build. More than likely you are missing a dependency for the module(s) that
-were not built, and so you can install the dependencies and re-run ``make``
-(if available for your OS).
+were not built, and so you can install the dependencies and re-run both
+``configure`` and ``make`` (if available for your OS).
 Otherwise the build failed and thus should be fixed (at least with a bug being
 filed on the `issue tracker`_).
 

-- 
Repository URL: http://hg.python.org/devguide


More information about the Python-checkins mailing list