aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-22 19:49:09 +0000
committerEric Andersen <andersen@codepoet.org>1999-10-22 19:49:09 +0000
commita07f0b040808c7b1a3b81cbbe3a580f023450817 (patch)
treedbd825e2be10fcde23ed463e29771ac30aeec9f6
parent9922c833cabe4b5766facb110c17bbaf5fc05670 (diff)
downloadbusybox-w32-a07f0b040808c7b1a3b81cbbe3a580f023450817.tar.gz
busybox-w32-a07f0b040808c7b1a3b81cbbe3a580f023450817.tar.bz2
busybox-w32-a07f0b040808c7b1a3b81cbbe3a580f023450817.zip
More stuff.
-rw-r--r--Changelog2
-rw-r--r--Makefile2
-rw-r--r--utility.c1
3 files changed, 4 insertions, 1 deletions
diff --git a/Changelog b/Changelog
index ab113a644..fe2c6b1bc 100644
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,6 @@
10.32 10.32
2 * usage() now printf the BusyBox version. This will help folks
3 realize that they are not in Kansas anymore.
2 * Fixed mkdir -m option so that it works. 4 * Fixed mkdir -m option so that it works.
3 5
40.31 60.31
diff --git a/Makefile b/Makefile
index 9701f4f0a..d1d0426d2 100644
--- a/Makefile
+++ b/Makefile
@@ -44,7 +44,7 @@ ifndef $(prefix)
44endif 44endif
45BINDIR=$(prefix) 45BINDIR=$(prefix)
46 46
47LIBRARIES=-lc 47LIBRARIES=
48OBJECTS=$(shell ./busybox.sh) 48OBJECTS=$(shell ./busybox.sh)
49CFLAGS+= -DBB_VER='"$(VERSION)"' 49CFLAGS+= -DBB_VER='"$(VERSION)"'
50CFLAGS+= -DBB_BT='"$(BUILDTIME)"' 50CFLAGS+= -DBB_BT='"$(BUILDTIME)"'
diff --git a/utility.c b/utility.c
index 421492dca..124efda40 100644
--- a/utility.c
+++ b/utility.c
@@ -39,6 +39,7 @@
39/* volatile so gcc knows this is the enod of the line */ 39/* volatile so gcc knows this is the enod of the line */
40volatile void usage(const char *usage) 40volatile void usage(const char *usage)
41{ 41{
42 fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n\n", BB_VER, BB_BT);
42 fprintf(stderr, "Usage: %s\n", usage); 43 fprintf(stderr, "Usage: %s\n", usage);
43 exit(FALSE); 44 exit(FALSE);
44} 45}