diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 870377e..f620a9f 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -6733,6 +6733,15 @@ The tar archiver. .IP TARCOM The command line used to call the tar archiver. +.IP TARCOMSTR +The string displayed when archiving files +using the tar archiver. +If this is not set, then $TARCOM (the command line) is displayed. + +.ES +env = Environment(TARCOMSTR = "Archiving $TARGET") +.EE + .IP TARFLAGS General options passed to the tar archiver. @@ -6807,6 +6816,16 @@ The command line used to call the zip utility, or the internal Python function used to create a zip archive. +.IP ZIPCOMSTR +The string displayed when archiving files +using the zip utility. +If this is not set, then $ZIPCOM +(the command line or internal Python function) is displayed. + +.ES +env = Environment(ZIPCOMSTR = "Zipping $TARGET") +.EE + .IP ZIPCOMPRESSION The .I compression |