diff options
author | Steven Knight <knight@baldmt.com> | 2004-12-01 03:27:20 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-12-01 03:27:20 (GMT) |
commit | 45844b22e688a57fac1af39aaf7d6fe62d3a111c (patch) | |
tree | f8eaf6856e88b24a68597c81b79afadf26a9500b /doc | |
parent | 5f5c44932c3eb316b3cd205d4774ca51bc66a5c4 (diff) | |
download | SCons-45844b22e688a57fac1af39aaf7d6fe62d3a111c.zip SCons-45844b22e688a57fac1af39aaf7d6fe62d3a111c.tar.gz SCons-45844b22e688a57fac1af39aaf7d6fe62d3a111c.tar.bz2 |
More command-line customizability: and .
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 |