diff options
Diffstat (limited to 'coreutils/touch.c')
-rw-r--r-- | coreutils/touch.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/coreutils/touch.c b/coreutils/touch.c index f8972dc..2076928 100644 --- a/coreutils/touch.c +++ b/coreutils/touch.c @@ -31,9 +31,11 @@ #include <errno.h> -static const char touch_usage[] = "touch [-c] file [file ...]\n\n" - - "Update the last-modified date on the given file[s].\n"; +static const char touch_usage[] = "touch [-c] file [file ...]\n" +#ifndef BB_FEATURE_TRIVIAL_HELP + "\nUpdate the last-modified date on the given file[s].\n" +#endif + ; |