summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index bcf20af..178e7ac 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -74,7 +74,11 @@ const char* cmMakefile::GetReleaseVersion()
#if CMake_VERSION_MINOR & 1
return "development";
#else
+# if CMake_VERSION_PATCH == 0
+ return "beta";
+# else
return "patch " CMAKE_TO_STRING(CMake_VERSION_PATCH);
+# endif
#endif
}