Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELP
[oweals/busybox.git] / sh.c
diff --git a/sh.c b/sh.c
index b96b46456814a4e36e6d5d9458c2b39fbf06f7d0..e446ad1132b6dcfd1702ac52d9495bcadb464994 100644 (file)
--- a/sh.c
+++ b/sh.c
@@ -127,8 +127,11 @@ static struct builtInCommand bltins[] = {
 
 static const char shell_usage[] =
 
-       "sh [FILE]...\n\n" "The BusyBox command interpreter (shell).\n\n";
-
+       "sh [FILE]...\n" 
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nlash: The BusyBox command interpreter (shell).\n\n"
+#endif
+       ;
 
 static char cwd[1024];
 static char *prompt = "# ";