diff options
author | Rob Landley | 2006-01-23 21:10:38 +0000 |
---|---|---|
committer | Rob Landley | 2006-01-23 21:10:38 +0000 |
commit | 6130b9b16027d09cacff9da44f3cd6efb57b9c54 (patch) | |
tree | 517f44a8e9d2756b76ce4d4f83e2f6e50751c08d /include/usage.h | |
parent | e0ae702b0e2f9484dc4811b6fefea32cae074ddc (diff) | |
download | busybox-6130b9b16027d09cacff9da44f3cd6efb57b9c54.zip busybox-6130b9b16027d09cacff9da44f3cd6efb57b9c54.tar.gz |
Testing CONFIG_SORT_BIG to display the help for the big version of sort isn't
much use when the symbol is CONFIG_FEATURE_SORT_BIG.
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index 8982f8d..9925732 100644 --- a/include/usage.h +++ b/include/usage.h @@ -97,6 +97,9 @@ "\t-c\tWrite output to standard output\n" \ "\t-f\tForce" +#define busybox_notes_usage \ + "Hello world!\n" + #define bzcat_trivial_usage \ "FILE" #define bzcat_full_usage \ @@ -2678,7 +2681,7 @@ USAGE_FANCY_SLEEP("$ sleep 1d 3h 22m 8s\n" \ "[98528 second delay results]\n") -#ifdef CONFIG_SORT_BIG +#if ENABLE_FEATURE_SORT_BIG # define USAGE_SORT_BIG(a) a #else # define USAGE_SORT_BIG(a) |