diff options
author | Rob Landley <rob@landley.net> | 2006-08-09 20:56:23 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-08-09 20:56:23 +0000 |
commit | 519d7df930d2ac14b7a833c0255a4a5abd5a329b (patch) | |
tree | ad8d4242826335c7e418648d60d82a55095f11e1 /libbb/messages.c | |
parent | e55a73c7a89d9437bda82d317ee980989a5949db (diff) | |
download | busybox-519d7df930d2ac14b7a833c0255a4a5abd5a329b.tar.gz |
Another whack at scripts/individual. Now builds 212 applets.
Diffstat (limited to 'libbb/messages.c')
-rw-r--r-- | libbb/messages.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libbb/messages.c b/libbb/messages.c index 2feb6a970..b6755058e 100644 --- a/libbb/messages.c +++ b/libbb/messages.c @@ -9,12 +9,14 @@ #ifdef L_full_version #ifndef BB_EXTRA_VERSION -#define LIBBB_BANNER "BusyBox's library v" BB_VER " (" BB_BT ")" +#define BANNER "BusyBox v" BB_VER " (" BB_BT ")" #else -#define LIBBB_BANNER "BusyBox's library v" BB_VER " (" BB_EXTRA_VERSION ")" +#define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")" #endif - const char * const libbb_msg_full_version = LIBBB_BANNER; +const char BB_BANNER[]=BANNER; +const char * const bb_msg_full_version = BANNER " multi-call binary"; #endif + #ifdef L_memory_exhausted const char * const bb_msg_memory_exhausted = "memory exhausted"; #endif |