[Python-checkins] cpython (3.1): Issue #12057: Add cjkencodings directory to the Makefile and Tools/msi/msi.py

victor.stinner python-checkins at python.org
Wed May 25 01:17:47 CEST 2011


http://hg.python.org/cpython/rev/a024183e046f
changeset:   70360:a024183e046f
branch:      3.1
parent:      70355:10b23f1c8cb6
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Wed May 25 01:13:59 2011 +0200
summary:
  Issue #12057: Add cjkencodings directory to the Makefile and Tools/msi/msi.py

files:
  Makefile.pre.in  |  4 ++--
  Tools/msi/msi.py |  2 ++
  2 files changed, 4 insertions(+), 2 deletions(-)


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -840,8 +840,8 @@
 MACHDEPS=	$(PLATDIR) $(EXTRAPLATDIR)
 XMLLIBSUBDIRS=  xml xml/dom xml/etree xml/parsers xml/sax
 LIBSUBDIRS=	tkinter tkinter/test tkinter/test/test_tkinter \
-                tkinter/test/test_ttk site-packages test test/data \
-		test/decimaltestdata \
+		tkinter/test/test_ttk site-packages test test/data \
+		test/cjkencodings test/decimaltestdata \
 		test/tracedmodules \
 		encodings \
 		email email/mime email/test email/test/data \
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py
--- a/Tools/msi/msi.py
+++ b/Tools/msi/msi.py
@@ -1021,6 +1021,8 @@
             lib.add_file("zipdir.zip")
         if dir=='tests' and parent.physical=='distutils':
             lib.add_file("Setup.sample")
+        if dir=='cjkencodings':
+            lib.glob("*.txt")
         if dir=='decimaltestdata':
             lib.glob("*.decTest")
         if dir=='output':

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list