diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 86c2fcdda..4e8a6902c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -729,9 +729,9 @@ if( WITH_ELFICON ) if( NOT LIBR_FOUND ) message(FATAL_ERROR "\nelficon support was requested, but libr was not found on your system" ) endif( NOT LIBR_FOUND ) - if( LIBR_VERSION != 0.6.0 ) + if( NOT "${LIBR_VERSION}" STREQUAL "0.6.0" ) message(FATAL_ERROR "\nelficon support was requested, but the libr version on your system may not be compatible with TDE" ) - endif( LIBR_VERSION != 0.6.0 ) + endif( NOT "${LIBR_VERSION}" STREQUAL "0.6.0" ) set( HAVE_ELFICON 1 ) endif( ) |