More stuff.
authorEric Andersen <andersen@codepoet.org>
Fri, 22 Oct 1999 19:49:09 +0000 (19:49 -0000)
committerEric Andersen <andersen@codepoet.org>
Fri, 22 Oct 1999 19:49:09 +0000 (19:49 -0000)
Changelog
Makefile
utility.c

index ab113a644ec02d7ada04ba3aa7a7f3595b50f59b..fe2c6b1bc3204d5a69494d10ad6cd739907ac3b2 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,6 @@
 0.32
+       * usage() now printf the BusyBox version.  This will help folks
+           realize that they are not in Kansas anymore.
        * Fixed mkdir -m option so that it works.
 
 0.31
index 9701f4f0ad1db040bd7e88ac235527ecbe9801ba..d1d0426d23b88f1a02cf8694ed2a898f96e372ba 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -44,7 +44,7 @@ ifndef $(prefix)
 endif
 BINDIR=$(prefix)
 
-LIBRARIES=-lc
+LIBRARIES=
 OBJECTS=$(shell ./busybox.sh)
 CFLAGS+= -DBB_VER='"$(VERSION)"'
 CFLAGS+= -DBB_BT='"$(BUILDTIME)"'
index 421492dca429d04a14a4bf5b34b3c65c0a92bbd8..124efda403d78e6a1a4689ce91be6693e0f620e0 100644 (file)
--- a/utility.c
+++ b/utility.c
@@ -39,6 +39,7 @@
 /* volatile so gcc knows this is the enod of the line */
 volatile void usage(const char *usage)
 {
+    fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n\n", BB_VER, BB_BT);
     fprintf(stderr, "Usage: %s\n", usage);
     exit(FALSE);
 }