aboutsummaryrefslogtreecommitdiff
path: root/sysinit/usage.ml
diff options
context:
space:
mode:
authorGuillaume Melquiond2021-02-16 09:02:37 +0100
committerGuillaume Melquiond2021-02-16 09:02:37 +0100
commit31e205ae752c5189143ef9ce87a3536db0cdeb62 (patch)
treeff6c9e169d561ce5da25e85e828f46253ef377f3 /sysinit/usage.ml
parentc0e0e637c61e075f43b73d1ddd8eaa9d79b27561 (diff)
Get rid of the compilation date from the binaries to make them more stable.
Contrarily to the comments, Coq_config.date was not the "release date" but just another "compile date".
Diffstat (limited to 'sysinit/usage.ml')
-rw-r--r--sysinit/usage.ml5
1 files changed, 2 insertions, 3 deletions
diff --git a/sysinit/usage.ml b/sysinit/usage.ml
index 763cd54137..d00b916f23 100644
--- a/sysinit/usage.ml
+++ b/sysinit/usage.ml
@@ -9,9 +9,8 @@
(************************************************************************)
let version () =
- Printf.printf "The Coq Proof Assistant, version %s (%s)\n"
- Coq_config.version Coq_config.date;
- Printf.printf "compiled on %s with OCaml %s\n" Coq_config.compile_date Coq_config.caml_version
+ Printf.printf "The Coq Proof Assistant, version %s\n" Coq_config.version;
+ Printf.printf "compiled with OCaml %s\n" Coq_config.caml_version
let machine_readable_version () =
Printf.printf "%s %s\n"