diff options
author | Matt Kraai <kraai@debian.org> | 2001-03-27 21:57:29 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-03-27 21:57:29 +0000 |
commit | a2e68fc23319d77789cae6eca899f328d15368a5 (patch) | |
tree | e578d9606a12b0d129894e5069d09edc8ebaf3ab /include | |
parent | 5b8939b1472d163c4bdd459554d0a6b329a06d97 (diff) | |
download | busybox-w32-a2e68fc23319d77789cae6eca899f328d15368a5.tar.gz busybox-w32-a2e68fc23319d77789cae6eca899f328d15368a5.tar.bz2 busybox-w32-a2e68fc23319d77789cae6eca899f328d15368a5.zip |
Change BB_FEATURE_TRIVIAL_HELP to BB_FEATURE_VERBOSE_USAGE (per bug #1130).
Diffstat (limited to 'include')
-rw-r--r-- | include/applets.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/applets.h b/include/applets.h index 2af2b49e7..0ab296312 100644 --- a/include/applets.h +++ b/include/applets.h | |||
@@ -21,14 +21,14 @@ | |||
21 | #define APPLET_ODDNAME(a,b,c,d) extern int b(int argc, char **argv); | 21 | #define APPLET_ODDNAME(a,b,c,d) extern int b(int argc, char **argv); |
22 | extern const char usage_messages[]; | 22 | extern const char usage_messages[]; |
23 | #elif defined(MAKE_USAGE) | 23 | #elif defined(MAKE_USAGE) |
24 | #ifdef BB_FEATURE_TRIVIAL_HELP | 24 | #ifdef BB_FEATURE_VERBOSE_USAGE |
25 | #define APPLET(a,b,c) a##_trivial_usage "\0" | ||
26 | #define APPLET_NOUSAGE(a,b,c) "\0" | ||
27 | #define APPLET_ODDNAME(a,b,c,d) d##_trivial_usage "\0" | ||
28 | #else | ||
29 | #define APPLET(a,b,c) a##_trivial_usage "\n\n" a##_full_usage "\0" | 25 | #define APPLET(a,b,c) a##_trivial_usage "\n\n" a##_full_usage "\0" |
30 | #define APPLET_NOUSAGE(a,b,c) "\0" | 26 | #define APPLET_NOUSAGE(a,b,c) "\0" |
31 | #define APPLET_ODDNAME(a,b,c,d) d##_trivial_usage "\n\n" d##_full_usage "\0" | 27 | #define APPLET_ODDNAME(a,b,c,d) d##_trivial_usage "\n\n" d##_full_usage "\0" |
28 | #else | ||
29 | #define APPLET(a,b,c) a##_trivial_usage "\0" | ||
30 | #define APPLET_NOUSAGE(a,b,c) "\0" | ||
31 | #define APPLET_ODDNAME(a,b,c,d) d##_trivial_usage "\0" | ||
32 | #endif | 32 | #endif |
33 | #elif defined(MAKE_LINKS) | 33 | #elif defined(MAKE_LINKS) |
34 | # define APPLET(a,b,c) LINK c a | 34 | # define APPLET(a,b,c) LINK c a |