[Patches] Lib/encodings not being installed

Michael Hudson mwh21@cam.ac.uk
Sat, 11 Mar 2000 18:53:47 +0000 (GMT)


With the recent unicode landing, the subject-mentioned problem occurs;
this little patch sorts that out. Vladimir Marangozov suggested I send it
to his address, so here it is.

I confirm that, to the best of my knowledge and belief, this
contribution is free of any claims of third parties under
copyright, patent or other rights or interests ("claims").  To
the extent that I have any such claims, I hereby grant to CNRI a
nonexclusive, irrevocable, royalty-free, worldwide license to
reproduce, distribute, perform and/or display publicly, prepare
derivative versions, and otherwise use this contribution as part
of the Python software and its related documentation, or any
derivative versions thereof, at no cost to CNRI or its licensed
users, and to authorize others to do so.

I acknowledge that CNRI may, at its sole discretion, decide
whether or not to incorporate this contribution in the Python
software and its related documentation.  I further grant CNRI
permission to use my name and other identifying information
provided to CNRI by me for use in connection with the Python
software and its related documentation.

Which seems even sillier than normal, as it's longer than the patch:

Index: Makefile.in
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Makefile.in,v
retrieving revision 1.83
diff -u -r1.83 Makefile.in
--- Makefile.in 2000/02/28 19:52:53     1.83
+++ Makefile.in 2000/03/11 18:50:46
@@ -289,7 +289,7 @@
 # Install the library
 PLATDIR=       plat-$(MACHDEP)
 MACHDEPS=      $(PLATDIR)
-LIBSUBDIRS=    lib-old lib-tk test test/output $(MACHDEPS)
+LIBSUBDIRS=    lib-old lib-tk test test/output encodings $(MACHDEPS)
 libinstall:    python $(srcdir)/Lib/$(PLATDIR)
                @for i in $(SCRIPTDIR) $(LIBDEST); \
                do \

Cheers,
M.