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

victor.stinner python-checkins at python.org
Wed May 25 01:21:09 CEST 2011


http://hg.python.org/cpython/rev/8ba0192a0eb1
changeset:   70363:8ba0192a0eb1
branch:      2.7
parent:      70358:3c724c3eaed7
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Wed May 25 01:19:57 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
@@ -853,8 +853,8 @@
 	plat-mac/lib-scriptpackages/Terminal 
 PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
 LIBSUBDIRS=	lib-tk lib-tk/test lib-tk/test/test_tkinter \
-                lib-tk/test/test_ttk site-packages test test/data \
-		test/decimaltestdata test/xmltestdata \
+		lib-tk/test/test_ttk site-packages test test/data \
+		test/cjkencodings test/decimaltestdata test/xmltestdata \
 		test/tracedmodules \
 		encodings compiler hotshot \
 		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
@@ -1022,6 +1022,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=='xmltestdata':

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


More information about the Python-checkins mailing list