diff options
| -rw-r--r-- | kde-modules/KDECompilerSettings.cmake | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/kde-modules/KDECompilerSettings.cmake b/kde-modules/KDECompilerSettings.cmake index 872edf18..ec2d5abd 100644 --- a/kde-modules/KDECompilerSettings.cmake +++ b/kde-modules/KDECompilerSettings.cmake @@ -209,9 +209,9 @@ Since pre-1.0.0.  # will offer as settings, the minimum required version of ECM sets the upper  # limit then for the level version.  if(NOT DEFINED KDE_COMPILERSETTINGS_LEVEL) -    set(KDE_COMPILERSETTINGS_LEVEL ${ECM_GLOBAL_FIND_VERSION}) +    set(KDE_COMPILERSETTINGS_LEVEL "${ECM_GLOBAL_FIND_VERSION}")  else() -    if(KDE_COMPILERSETTINGS_LEVEL VERSION_GREATER ${ECM_GLOBAL_FIND_VERSION}) +    if(KDE_COMPILERSETTINGS_LEVEL VERSION_GREATER "${ECM_GLOBAL_FIND_VERSION}")          message(FATAL "KDE_COMPILERSETTINGS_LEVEL cannot be newer than the min. required ECM version.")      endif()  endif() | 
