diff --git a/CMakeLists.txt b/CMakeLists.txt index 9cfe41712..466c472ce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -184,7 +184,7 @@ if (OPM_ENABLE_PYTHON) endif() set(Python3_EXECUTABLE ${PYTHON_EXECUTABLE}) set(Python3_LIBRARIES ${PYTHON_LIBRARIES}) - set(Python3_VERSION "${PYTHON_VERSION_STRING}"}) + set(Python3_VERSION "${PYTHON_VERSION_STRING}") set(Python3_VERSION_MINOR ${PYTHON_VERSION_MINOR}) else() # Be backwards compatible. diff --git a/cmake/Modules/FindValgrind.cmake b/cmake/Modules/FindValgrind.cmake index ae261507a..04f6eb25e 100644 --- a/cmake/Modules/FindValgrind.cmake +++ b/cmake/Modules/FindValgrind.cmake @@ -3,13 +3,10 @@ # This module defines: # VALGRIND_INCLUDE_DIR, where to find valgrind/memcheck.h, etc. # VALGRIND_PROGRAM, the valgrind executable. -# VALGRIND_FOUND, If false, do not try to use valgrind. +# Valgrind_FOUND, If false, do not try to use valgrind. # # If you have valgrind installed in a non-standard place, you can define # VALGRIND_ROOT to tell cmake where it is. -if (VALGRIND_FOUND) - return() -endif() find_path(VALGRIND_INCLUDE_DIR valgrind/memcheck.h /usr/include /usr/local/include ${VALGRIND_ROOT}/include) @@ -18,7 +15,7 @@ find_path(VALGRIND_INCLUDE_DIR valgrind/memcheck.h # path, but this does not hurt... find_program(VALGRIND_PROGRAM NAMES valgrind PATH ${VALGRIND_ROOT}/bin) -find_package_handle_standard_args(VALGRIND DEFAULT_MSG +find_package_handle_standard_args(Valgrind DEFAULT_MSG VALGRIND_INCLUDE_DIR VALGRIND_PROGRAM)