aboutsummaryrefslogtreecommitdiff
path: root/scripts
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 /scripts
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 'scripts')
-rw-r--r--scripts/config/confdata.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/config/confdata.c b/scripts/config/confdata.c
index 768f771d0..aca6864cc 100644
--- a/scripts/config/confdata.c
+++ b/scripts/config/confdata.c
@@ -292,16 +292,21 @@ int conf_write(const char *name)
fprintf(out, "#\n"
"# Automatically generated make config: don't edit\n"
"#\n");
- if (out_h)
+ if (out_h) {
fprintf(out_h, "/*\n"
" * Automatically generated header file: don't edit\n"
" */\n\n"
"#define AUTOCONF_INCLUDED\n\n"
"/* Version Number */\n"
"#define BB_VER \"%s\"\n"
- "#define BB_BT \"%s\"\n\n",
+ "#define BB_BT \"%s\"\n",
getenv("VERSION"),
getenv("BUILDTIME"));
+ if (getenv("EXTRA_VERSION"))
+ fprintf(out_h, "#define BB_EXTRA_VERSION \"%s\"\n",
+ getenv("EXTRA_VERSION"));
+ fprintf(out_h, "\n");
+ }
if (!sym_change_count)
sym_clear_all_valid();