CMake: mark internal SSL deps variable as internal

_PYTHON_SSL_CERT_FILE_DEPS was showing up in CMake's options
when it's intended only as internal cache to track changes.
This commit is contained in:
Campbell Barton
2023-11-04 16:41:22 +11:00
parent 5d3f735fea
commit 1a82019ba2

View File

@@ -1459,7 +1459,8 @@ macro(find_python_module_file
NO_DEFAULT_PATH
)
if(${out_var_abs})
set(_${out_var_abs}_DEPS "${_python_mod_file_deps_test}" CACHE STRING "")
# Internal because this is only to track changes (users never need to manipulate it).
set(_${out_var_abs}_DEPS "${_python_mod_file_deps_test}" CACHE INTERNAL STRING "")
endif()
endif()