diff options
-rw-r--r-- | coreutils/touch.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/coreutils/touch.c b/coreutils/touch.c index 0f980fd7b..dc95edf1f 100644 --- a/coreutils/touch.c +++ b/coreutils/touch.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | /* BB_AUDIT SUSv3 _NOT_ compliant -- options -a, -m, -r, -t not supported. */ | 10 | /* BB_AUDIT SUSv3 _NOT_ compliant -- options -a, -m not supported. */ |
11 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/touch.html */ | 11 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/touch.html */ |
12 | 12 | ||
13 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) | 13 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
@@ -31,12 +31,13 @@ | |||
31 | //kbuild:lib-$(CONFIG_TOUCH) += touch.o | 31 | //kbuild:lib-$(CONFIG_TOUCH) += touch.o |
32 | 32 | ||
33 | //usage:#define touch_trivial_usage | 33 | //usage:#define touch_trivial_usage |
34 | //usage: "[-c]" IF_DESKTOP(" [-d DATE] [-r FILE]") " FILE [FILE]..." | 34 | //usage: "[-c]" IF_DESKTOP(" [-d DATE] [-t DATE] [-r FILE]") " FILE [FILE]..." |
35 | //usage:#define touch_full_usage "\n\n" | 35 | //usage:#define touch_full_usage "\n\n" |
36 | //usage: "Update the last-modified date on the given FILE[s]\n" | 36 | //usage: "Update the last-modified date on the given FILE[s]\n" |
37 | //usage: "\n -c Don't create files" | 37 | //usage: "\n -c Don't create files" |
38 | //usage: IF_DESKTOP( | 38 | //usage: IF_DESKTOP( |
39 | //usage: "\n -d DT Date/time to use" | 39 | //usage: "\n -d DT Date/time to use" |
40 | //usage: "\n -t DT Date/time to use" | ||
40 | //usage: "\n -r FILE Use FILE's date/time" | 41 | //usage: "\n -r FILE Use FILE's date/time" |
41 | //usage: ) | 42 | //usage: ) |
42 | //usage: | 43 | //usage: |