aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/utils/mkver.c
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2015-09-09 17:41:41 +0200
committerRickard Green <[email protected]>2015-09-09 18:11:19 +0200
commite4dedc6cffb5025161d9a6295523b215e5a165c7 (patch)
tree4b99cbcd48a069514e39e20efb867dcc39c0eff7 /erts/emulator/utils/mkver.c
parent6b4c2dbd1b4a30f421611987acec6315c62ac9d5 (diff)
downloadotp-e4dedc6cffb5025161d9a6295523b215e5a165c7.tar.gz
otp-e4dedc6cffb5025161d9a6295523b215e5a165c7.tar.bz2
otp-e4dedc6cffb5025161d9a6295523b215e5a165c7.zip
Add configure switch --disable-saved-compile-time
Diffstat (limited to 'erts/emulator/utils/mkver.c')
-rw-r--r--erts/emulator/utils/mkver.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/erts/emulator/utils/mkver.c b/erts/emulator/utils/mkver.c
index 96cd315a95..6641873712 100644
--- a/erts/emulator/utils/mkver.c
+++ b/erts/emulator/utils/mkver.c
@@ -35,8 +35,10 @@ int argc;
char** argv;
{
FILE *file;
+#if ERTS_SAVED_COMPILE_TIME
time_t now;
- char *cnow;
+#endif
+ char *cnow = "";
if (argc != 2) {
fprintf(stderr, "usage: mkver version\n");
@@ -48,9 +50,11 @@ char** argv;
exit(1);
}
+#if ERTS_SAVED_COMPILE_TIME
time(&now);
cnow = ctime(&now);
cnow[24] = '\0'; /* tidelipom */
+#endif
fprintf(file, "/* This file was created by mkver -- don't modify.*/\n");
fprintf(file, "#define ERLANG_VERSION \"%s\"\n", argv[1]);
fprintf(file, "#define ERLANG_COMPILE_DATE \"%s\"\n", cnow);