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 --- coreutils/mkdir.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'coreutils/mkdir.c') diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c index 54d9b7241..96649868d 100644 --- a/coreutils/mkdir.c +++ b/coreutils/mkdir.c @@ -30,12 +30,15 @@ #include static const char mkdir_usage[] = - "mkdir [OPTION] DIRECTORY...\n\n" - "Create the DIRECTORY(ies), if they do not already exist\n\n" + "mkdir [OPTION] DIRECTORY...\n" +#ifndef BB_FEATURE_TRIVIAL_HELP + "\nCreate the DIRECTORY(ies), if they do not already exist\n\n" "Options:\n" "\t-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n" - "\t-p\tno error if existing, make parent directories as needed\n"; + "\t-p\tno error if existing, make parent directories as needed\n" +#endif + ; static int parentFlag = FALSE; -- cgit v1.2.3-55-g6feb