From 3a7ad24d94bc8ca3a532664af56e7d6a5bedc073 Mon Sep 17 00:00:00 2001 From: erik Date: Fri, 12 May 2000 19:41:47 +0000 Subject: Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELP which lets you compile out most of the "--help" output, saving up to 17k. Renamed mnc to nc. -Erik git-svn-id: svn://busybox.net/trunk/busybox@532 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- rm.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'rm.c') diff --git a/rm.c b/rm.c index 0cd795661..c62d68aba 100644 --- a/rm.c +++ b/rm.c @@ -29,12 +29,14 @@ #include #include -static const char *rm_usage = "rm [OPTION]... FILE...\n\n" - "Remove (unlink) the FILE(s).\n\n" +static const char *rm_usage = "rm [OPTION]... FILE...\n" +#ifndef BB_FEATURE_TRIVIAL_HELP + "\nRemove (unlink) the FILE(s).\n\n" "Options:\n" - "\t-f\t\tremove existing destinations, never prompt\n" - "\t-r or -R\tremove the contents of directories recursively\n"; + "\t-r or -R\tremove the contents of directories recursively\n" +#endif + ; static int recursiveFlag = FALSE; -- cgit v1.2.3-55-g6feb