diff options
Diffstat (limited to 'src/misc.cpp')
-rw-r--r-- | src/misc.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/misc.cpp b/src/misc.cpp index 6f0d95833..4832fabcb 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -590,7 +590,7 @@ Anope::string Anope::VersionShort() Anope::string Anope::VersionBuildString() { -#ifdef REPRODUCIBLE_BUILD +#if REPRODUCIBLE_BUILD Anope::string s = "build #" + Anope::ToString(BUILD); #else Anope::string s = "build #" + Anope::ToString(BUILD) + ", compiled " + Anope::compiled; @@ -603,6 +603,9 @@ Anope::string Anope::VersionBuildString() #ifdef VERSION_GIT flags += "G"; #endif +#if REPRODUCIBLE_BUILD + flags += "R" +#endif #ifdef _WIN32 flags += "W"; #endif |