aboutsummaryrefslogtreecommitdiff
path: root/include/usage.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-01-20 02:51:09 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-01-20 02:51:09 +0100
commit94ca6943bc5266b0f3e6fc180814e184d7502442 (patch)
tree5034cffc64f6679c4478eabb6a37100c57cbc9cd /include/usage.h
parent0d478334b3e6f644f26518c31117b25134a2678a (diff)
downloadbusybox-94ca6943bc5266b0f3e6fc180814e184d7502442.tar.gz
*: small code shrinks and compile fix for unicode
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/usage.h')
-rw-r--r--include/usage.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/include/usage.h b/include/usage.h
index 77b7b99bd..44cc83422 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -4406,9 +4406,9 @@
"nameserver 10.0.0.1\n"
#define tar_trivial_usage \
- "-[" IF_FEATURE_TAR_CREATE("c") IF_FEATURE_SEAMLESS_GZ("z") \
+ "-[" IF_FEATURE_TAR_CREATE("c") "xt" IF_FEATURE_SEAMLESS_GZ("z") \
IF_FEATURE_SEAMLESS_BZ2("j") IF_FEATURE_SEAMLESS_LZMA("a") \
- IF_FEATURE_SEAMLESS_Z("Z") IF_FEATURE_TAR_NOPRESERVE_TIME("m") "xtvO] " \
+ IF_FEATURE_SEAMLESS_Z("Z") IF_FEATURE_TAR_NOPRESERVE_TIME("m") "vO] " \
IF_FEATURE_TAR_FROM("[-X FILE] ") \
"[-f TARFILE] [-C DIR] [FILE]..."
#define tar_full_usage "\n\n" \
@@ -4417,7 +4417,8 @@
"or list files from a tar file\n" \
"\nOptions:" \
IF_FEATURE_TAR_CREATE( \
- "\n c Create") \
+ "\n c Create" \
+ ) \
"\n x Extract" \
"\n t List" \
"\nArchive format selection:" \
@@ -4434,16 +4435,18 @@
"\n Z Filter the archive through compress" \
) \
IF_FEATURE_TAR_NOPRESERVE_TIME( \
- "\n m Do not extract files modified time" \
+ "\n m Do not restore mtime" \
) \
"\nFile selection:" \
"\n f Name of TARFILE or \"-\" for stdin" \
"\n O Extract to stdout" \
IF_FEATURE_TAR_FROM( \
+ IF_FEATURE_TAR_LONG_OPTIONS( \
"\n exclude File to exclude" \
+ ) \
"\n X File with names to exclude" \
) \
- "\n C Change to directory DIR before operation" \
+ "\n C Change to DIR before operation" \
"\n v Verbose" \
#define tar_example_usage \