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.
diff --git a/include/busybox.h b/include/busybox.h
index aaa844f..28ea253 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>