aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-09-03 21:54:46 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-09-03 21:54:46 +0000
commitd4b719878f5a08986d0a3dc493aad90d4466752e (patch)
tree64d7c96a59ae67227884cd26662eff01762edb6e /include
parenta2e1eea189981e03b2590c2cd59b9ae65a9cea4f (diff)
downloadbusybox-w32-d4b719878f5a08986d0a3dc493aad90d4466752e.tar.gz
busybox-w32-d4b719878f5a08986d0a3dc493aad90d4466752e.tar.bz2
busybox-w32-d4b719878f5a08986d0a3dc493aad90d4466752e.zip
kbd_mode: fix non-ASCII letters in comments
install: support -D
Diffstat (limited to 'include')
-rw-r--r--include/usage.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/include/usage.h b/include/usage.h
index b901090b8..47a648f21 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -1873,19 +1873,20 @@
1873 ) 1873 )
1874 1874
1875#define install_trivial_usage \ 1875#define install_trivial_usage \
1876 "[-cgmops] [sources] dest|directory" 1876 "[-cdDsp] [-o USER] [-g GRP] [-m MODE] [source] dest|directory"
1877#define install_full_usage "\n\n" \ 1877#define install_full_usage "\n\n" \
1878 "Copy files and set attributes\n" \ 1878 "Copy files and set attributes\n" \
1879 "\nOptions:" \ 1879 "\nOptions:" \
1880 "\n -c Copy the file, default" \ 1880 "\n -c Just copy (default)" \
1881 "\n -d Create directories" \ 1881 "\n -d Create directories" \
1882 "\n -g Set group ownership" \ 1882 "\n -D Create leading directories" \
1883 "\n -m Set permissions" \ 1883 "\n -s Strip symbol table" \
1884 "\n -o Set ownership" \
1885 "\n -p Preserve date" \ 1884 "\n -p Preserve date" \
1886 "\n -s Strip symbol tables" \ 1885 "\n -o USER Set ownership" \
1886 "\n -g GRP Set group ownership" \
1887 "\n -m MODE Set permissions" \
1887 USE_SELINUX( \ 1888 USE_SELINUX( \
1888 "\n -Z Set security context of copy" \ 1889 "\n -Z Set security context" \
1889 ) 1890 )
1890 1891
1891/* would need to make the " | " optional depending on more than one selected: */ 1892/* would need to make the " | " optional depending on more than one selected: */