mirror of
https://github.com/sheumann/hush.git
synced 2024-11-18 17:10:36 +00:00
More stuff.
This commit is contained in:
parent
9922c833ca
commit
a07f0b0408
@ -1,4 +1,6 @@
|
|||||||
0.32
|
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.
|
* Fixed mkdir -m option so that it works.
|
||||||
|
|
||||||
0.31
|
0.31
|
||||||
|
2
Makefile
2
Makefile
@ -44,7 +44,7 @@ ifndef $(prefix)
|
|||||||
endif
|
endif
|
||||||
BINDIR=$(prefix)
|
BINDIR=$(prefix)
|
||||||
|
|
||||||
LIBRARIES=-lc
|
LIBRARIES=
|
||||||
OBJECTS=$(shell ./busybox.sh)
|
OBJECTS=$(shell ./busybox.sh)
|
||||||
CFLAGS+= -DBB_VER='"$(VERSION)"'
|
CFLAGS+= -DBB_VER='"$(VERSION)"'
|
||||||
CFLAGS+= -DBB_BT='"$(BUILDTIME)"'
|
CFLAGS+= -DBB_BT='"$(BUILDTIME)"'
|
||||||
|
@ -39,6 +39,7 @@
|
|||||||
/* volatile so gcc knows this is the enod of the line */
|
/* volatile so gcc knows this is the enod of the line */
|
||||||
volatile void usage(const char *usage)
|
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);
|
fprintf(stderr, "Usage: %s\n", usage);
|
||||||
exit(FALSE);
|
exit(FALSE);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user