[Python-checkins] r59482 - in python/trunk: Lib/distutils/sysconfig.py README
christian.heimes
python-checkins at python.org
Thu Dec 13 20:23:16 CET 2007
Author: christian.heimes
Date: Thu Dec 13 20:23:16 2007
New Revision: 59482
Modified:
python/trunk/Lib/distutils/sysconfig.py
python/trunk/README
Log:
Fixed bug #1613: Makefile's VPATH feature is broken
Modified: python/trunk/Lib/distutils/sysconfig.py
==============================================================================
--- python/trunk/Lib/distutils/sysconfig.py (original)
+++ python/trunk/Lib/distutils/sysconfig.py Thu Dec 13 20:23:16 2007
@@ -32,7 +32,7 @@
# building an extension with an un-installed Python, so we use
# different (hard-wired) directories.
python_build = os.path.isfile(os.path.join(project_base, "Modules",
- "Setup.dist"))
+ "Setup.local"))
def get_python_version():
Modified: python/trunk/README
==============================================================================
--- python/trunk/README (original)
+++ python/trunk/README Thu Dec 13 20:23:16 2007
@@ -1157,6 +1157,9 @@
doesn't exist and run it with arguments $(srcdir)/Setup Setup.local;
however this assumes that you only need to add modules.)
+Also note that you can't use a workspace for VPATH and non VPATH builds. The
+object files left behind by one version confuses the other.
+
Building on non-UNIX systems
----------------------------
More information about the Python-checkins
mailing list