diff options
author | Steven Knight <knight@baldmt.com> | 2003-12-16 11:56:45 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-12-16 11:56:45 (GMT) |
commit | 7531fc5ad155280e4cdaf1ed0a0e4472d607541f (patch) | |
tree | 357c0b5f81ca33ee0f74c45dd581a9a424442b45 /doc | |
parent | 972e1b6321b522d1290f04d6ad15f4f4beff8bf4 (diff) | |
download | SCons-7531fc5ad155280e4cdaf1ed0a0e4472d607541f.zip SCons-7531fc5ad155280e4cdaf1ed0a0e4472d607541f.tar.gz SCons-7531fc5ad155280e4cdaf1ed0a0e4472d607541f.tar.bz2 |
Have the Zip() Builder create compressed .zip files by default.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index a657565..4dcf3b9 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -5168,7 +5168,26 @@ or a .hpp file The zip compression and file packaging utility. .IP ZIPCOM -The command line used to call the zip utility. +The command line used to call the zip utility, +or the internal Python function used to create a +zip archive. + +.IP ZIPCOMPRESSION +The +.I compression +flag +from the Python +.B zipfile +module used by the internal Python function +to control whether the zip archive +is compressed or not. +The default value is +.BR zipfile.ZIP_DEFLATED , +which creates a compressed zip archive. +This value has no effect when using Python 1.5.2 +or if the +.B zipfile +module is otherwise unavailable. .IP ZIPFLAGS General options passed to the zip utility. |