diff options
| author | coqbot-app[bot] | 2021-02-25 14:31:29 +0000 |
|---|---|---|
| committer | GitHub | 2021-02-25 14:31:29 +0000 |
| commit | 6ef58b0e9348d49ccf456d9fd475368c3dc1aafa (patch) | |
| tree | 2bfac97ec9b968f50b682ef585a46488cc053e8c /sysinit | |
| parent | 87fc1db11d152af38b5e0d01d7ba925035c396a9 (diff) | |
| parent | 31e205ae752c5189143ef9ce87a3536db0cdeb62 (diff) | |
Merge PR #13863: Get rid of the compilation date from the binaries to make them more stable.
Reviewed-by: SkySkimmer
Reviewed-by: gares
Diffstat (limited to 'sysinit')
| -rw-r--r-- | sysinit/usage.ml | 5 |
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" |
