Index: build_exe.py
===================================================================
RCS file: /cvsroot/py2exe/py2exe/py2exe/build_exe.py,v
retrieving revision 1.72
diff -u -r1.72 build_exe.py
--- build_exe.py	22 Nov 2006 08:43:36 -0000	1.72
+++ build_exe.py	28 Jan 2008 19:21:23 -0000
@@ -577,7 +577,7 @@
         if dist.zipfile is None:
             os.unlink(arcname)
         else:
-            if self.bundle_files < 3 or self.compressed:
+            if self.bundle_files < 2 or self.compressed:
                 arcbytes = open(arcname, "rb").read()
                 arcfile = open(arcname, "wb")
 
@@ -800,7 +800,7 @@
                              # otherwise the resource will not be found.
                              unicode(python_dll).upper(), 1, False)
 
-            if self.compressed and self.bundle_files < 3 and self.distribution.zipfile is None:
+            if self.compressed and self.distribution.zipfile is None:
                 zlib_file = imp.find_module("zlib")[0]
                 if zlib_file:
                     print "Adding zlib.pyd as resource to %s" % exe_path

