[Python-checkins] r62223 - python/trunk/Tools/msi/msi.py

martin.v.loewis python-checkins at python.org
Tue Apr 8 18:48:35 CEST 2008


Author: martin.v.loewis
Date: Tue Apr  8 18:48:35 2008
New Revision: 62223

Modified:
   python/trunk/Tools/msi/msi.py
Log:
Suppress compilation of py3_ files upon installation.

Modified: python/trunk/Tools/msi/msi.py
==============================================================================
--- python/trunk/Tools/msi/msi.py	(original)
+++ python/trunk/Tools/msi/msi.py	Tue Apr  8 18:48:35 2008
@@ -375,7 +375,7 @@
               ("VerdanaRed9", "Verdana", 9, 255, 0),
              ])
 
-    compileargs = r'-Wi "[TARGETDIR]Lib\compileall.py" -f -x bad_coding|badsyntax|site-packages "[TARGETDIR]Lib"'
+    compileargs = r'-Wi "[TARGETDIR]Lib\compileall.py" -f -x bad_coding|badsyntax|site-packages|py3_ "[TARGETDIR]Lib"'
     # See "CustomAction Table"
     add_data(db, "CustomAction", [
         # msidbCustomActionTypeFirstSequence + msidbCustomActionTypeTextData + msidbCustomActionTypeProperty


More information about the Python-checkins mailing list