]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Use lzx:21 for compression.
authorMartin v. Löwis <martin@v.loewis.de>
Tue, 27 Sep 2005 19:16:32 +0000 (19:16 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Tue, 27 Sep 2005 19:16:32 +0000 (19:16 +0000)
Tools/msi/msilib.py

index 8371e9613b20c483cf48eaacfbe75d8a41a2bca1..948099db5fc078ef8a1472cced90b563164fb165 100644 (file)
@@ -393,7 +393,7 @@ class CAB:
         else:
             print "WARNING: cabarc.exe not found in registry"
             cabarc = "cabarc.exe"
-        f = popen2.popen4(r'"%s" n %s.cab @%s.txt' % (cabarc, self.name, self.name))[0]
+        f = popen2.popen4(r'"%s" -m lzx:21 n %s.cab @%s.txt' % (cabarc, self.name, self.name))[0]
         for line in f:
             if line.startswith("  -- adding "):
                 sys.stdout.write(".")