aboutsummaryrefslogtreecommitdiff
path: root/include/busybox.h
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-01-13 10:57:32 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2004-01-13 10:57:32 +0000
commit7c87b67c08b7fe379f203ecdfff6bb7d604719a5 (patch)
tree193fac3f25479000e32bbf2cecb00a1c667649fb /include/busybox.h
parent76620620ecbf2e8d456e00592bd7d5f8e31a33d2 (diff)
downloadbusybox-7c87b67c08b7fe379f203ecdfff6bb7d604719a5.tar.gz
Patch from Bastian Blank, allow the buildtime to be overriden with a
different string, used by the debian busybox-cvs to specify the debian date based version number.
Diffstat (limited to 'include/busybox.h')
-rw-r--r--include/busybox.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/busybox.h b/include/busybox.h
index aaa844f43..28ea2530f 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -37,7 +37,11 @@
#endif
#endif
+#ifndef BB_EXTRA_VERSION
#define BB_BANNER "BusyBox v" BB_VER " (" BB_BT ")"
+#else
+#define BB_BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")"
+#endif
#ifdef DMALLOC
#include <dmalloc.h>