Add support for large zip files in make_distrib.py (issue #1350).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1795 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
9dfcf5c443
commit
a1fcfe8dc5
|
@ -17,7 +17,7 @@ import zipfile
|
||||||
|
|
||||||
def create_archive(input_dir, zip_file):
|
def create_archive(input_dir, zip_file):
|
||||||
""" Creates a zip archive of the specified input directory. """
|
""" Creates a zip archive of the specified input directory. """
|
||||||
zf = zipfile.ZipFile(zip_file, 'w', zipfile.ZIP_DEFLATED)
|
zf = zipfile.ZipFile(zip_file, 'w', zipfile.ZIP_DEFLATED, True)
|
||||||
def addDir(dir):
|
def addDir(dir):
|
||||||
for f in os.listdir(dir):
|
for f in os.listdir(dir):
|
||||||
full_path = os.path.join(dir, f)
|
full_path = os.path.join(dir, f)
|
||||||
|
|
Loading…
Reference in New Issue