[Python-checkins] r47115 - in python/trunk: Makefile.pre.in Misc/NEWS

neal.norwitz python-checkins at python.org
Tue Jun 27 06:12:59 CEST 2006


Author: neal.norwitz
Date: Tue Jun 27 06:12:58 2006
New Revision: 47115

Modified:
   python/trunk/Makefile.pre.in
   python/trunk/Misc/NEWS
Log:
Fix SF bug #1513032, 'make install' failure on FreeBSD 5.3.

No need to install lib-old, it's empty in 2.5.



Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in	(original)
+++ python/trunk/Makefile.pre.in	Tue Jun 27 06:12:58 2006
@@ -703,7 +703,7 @@
 	plat-mac/lib-scriptpackages/SystemEvents \
 	plat-mac/lib-scriptpackages/Terminal
 PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
-LIBSUBDIRS=	lib-old lib-tk site-packages test test/output test/data \
+LIBSUBDIRS=	lib-tk site-packages test test/output test/data \
 		test/decimaltestdata \
 		encodings compiler hotshot \
 		email email/mime email/test email/test/data \

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Tue Jun 27 06:12:58 2006
@@ -28,6 +28,11 @@
 
 - The wsgiref package is now installed properly on Unix.
 
+Build
+-----
+
+- Bug #1513032, 'make install' failed on FreeBSD 5.3 due to lib-old
+  trying to be installed even though it's empty.
 
 
 What's New in Python 2.5 beta 1?


More information about the Python-checkins mailing list