Improve error message for old versions of GCC

refs #12537
This commit is contained in:
Gunnar Beutner 2016-08-27 07:45:37 +02:00
parent 56ba6089d0
commit 60e86e02ff
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
)
if("${_ICINGA2_COMPILER_VERSION}" VERSION_LESS "4.6.0")
message(FATAL_ERRORSTATUS "Your version of GCC is too old for building Icinga 2 (GCC >= 4.6.0 is required).")
message(FATAL_ERROR "Your version of GCC (${_ICINGA2_COMPILER_VERSION}) is too old for building Icinga 2 (GCC >= 4.6.0 is required).")
endif()
endif()