[Python-3000-checkins] r67269 - in python/branches/py3k: Makefile.pre.in Misc/NEWS

benjamin.peterson python-3000-checkins at python.org
Tue Nov 18 23:37:15 CET 2008


Author: benjamin.peterson
Date: Tue Nov 18 23:37:15 2008
New Revision: 67269

Log:
fix the Makefile so it doesn't pollute sys.path

#4349 reviewed by Christian


Modified:
   python/branches/py3k/Makefile.pre.in
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in	(original)
+++ python/branches/py3k/Makefile.pre.in	Tue Nov 18 23:37:15 2008
@@ -801,7 +801,6 @@
 # Install the library
 PLATDIR=	plat-$(MACHDEP)
 EXTRAPLATDIR= @EXTRAPLATDIR@
-EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
 MACHDEPS=	$(PLATDIR) $(EXTRAPLATDIR)
 XMLLIBSUBDIRS=  xml xml/dom xml/etree xml/parsers xml/sax
 LIBSUBDIRS=	tkinter site-packages test test/output test/data \

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Tue Nov 18 23:37:15 2008
@@ -13,6 +13,9 @@
 Core and Builtins
 -----------------
 
+- Issue #4349: sys.path included a non-existent platform directory because of a
+  faulty Makefile.
+
 - Issue #3327: Don't overallocate in the modules_by_index list.
 
 - Issue #1721812:  Binary set operations and copy() returned the input type


More information about the Python-3000-checkins mailing list