diff options
Diffstat (limited to 'src/misc.cpp')
-rw-r--r-- | src/misc.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/misc.cpp b/src/misc.cpp index e1d78c800..8149481ca 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -632,7 +632,11 @@ Anope::string Anope::VersionShort() Anope::string Anope::VersionBuildString() { +#ifdef REPRODUCIBLE_BUILD + Anope::string s = "build #" + stringify(BUILD); +#else Anope::string s = "build #" + stringify(BUILD) + ", compiled " + Anope::compiled; +#endif Anope::string flags; #ifdef DEBUG_BUILD |