[Python-checkins] r81316 - in python/branches/release26-maint: Makefile.pre.in

georg.brandl python-checkins at python.org
Wed May 19 02:10:00 CEST 2010


Author: georg.brandl
Date: Wed May 19 02:10:00 2010
New Revision: 81316

Log:
Merged revisions 72787 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72787 | ronald.oussoren | 2009-05-19 19:06:38 +0000 (Di, 19 Mai 2009) | 8 lines
  
  This patch ensures that the pydoc_data package gets installed. This is needed
  to make it possible to use pydoc to get access to the language reference.
  
  That is, without this patch the folllowing won't work:
  
     >>> help('if')
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Makefile.pre.in

Modified: python/branches/release26-maint/Makefile.pre.in
==============================================================================
--- python/branches/release26-maint/Makefile.pre.in	(original)
+++ python/branches/release26-maint/Makefile.pre.in	Wed May 19 02:10:00 2010
@@ -829,7 +829,7 @@
 		distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
 		multiprocessing multiprocessing/dummy \
 		lib-old \
-		curses $(MACHDEPS)
+		curses pydoc_data $(MACHDEPS)
 libinstall:	build_all $(srcdir)/Lib/$(PLATDIR)
 	@for i in $(SCRIPTDIR) $(LIBDEST); \
 	do \


More information about the Python-checkins mailing list