[Python-checkins] r47094 - python/trunk/Makefile.pre.in

ronald.oussoren python-checkins at python.org
Sun Jun 25 23:19:06 CEST 2006


Author: ronald.oussoren
Date: Sun Jun 25 23:19:06 2006
New Revision: 47094

Modified:
   python/trunk/Makefile.pre.in
Log:
Also install the .egg-info files in Lib. This will cause wsgiref.egg-info to
be installed.


Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in	(original)
+++ python/trunk/Makefile.pre.in	Sun Jun 25 23:19:06 2006
@@ -733,7 +733,7 @@
 		else	true; \
 		fi; \
 	done
-	@for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc; \
+	@for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc $(srcdir)/Lib/*.egg-info ; \
 	do \
 		if test -x $$i; then \
 			$(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \


More information about the Python-checkins mailing list