diff options
Diffstat (limited to 'coreutils/yes.c')
-rw-r--r-- | coreutils/yes.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/coreutils/yes.c b/coreutils/yes.c index a822ebc..97b6f65 100644 --- a/coreutils/yes.c +++ b/coreutils/yes.c @@ -28,8 +28,11 @@ extern int yes_main(int argc, char **argv) int i; if (argc >=1 && *argv[1]=='-') { - usage("yes [OPTION]... [STRING]...\n\n" - "Repeatedly outputs a line with all specified STRING(s), or `y'.\n"); + usage("yes [OPTION]... [STRING]...\n" +#ifndef BB_FEATURE_TRIVIAL_HELP + "\nRepeatedly outputs a line with all specified STRING(s), or `y'.\n" +#endif + ); } if (argc == 1) { |