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

ronald.oussoren python-checkins at python.org
Tue May 19 21:06:38 CEST 2009


Author: ronald.oussoren
Date: Tue May 19 21:06:38 2009
New Revision: 72787

Log:
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/trunk/Makefile.pre.in

Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in	(original)
+++ python/trunk/Makefile.pre.in	Tue May 19 21:06:38 2009
@@ -837,7 +837,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