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.
This commit is contained in:
Glenn L McGrath
2004-01-13 10:57:32 +00:00
parent 76620620ec
commit 7c87b67c08
2 changed files with 11 additions and 2 deletions

View File

@ -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>