diff options
author | fuzzard <fuzzard@kodi.tv> | 2024-06-26 06:12:51 +1000 |
---|---|---|
committer | fuzzard <fuzzard@kodi.tv> | 2024-06-26 06:31:16 +1000 |
commit | 9cb351848fcf60a688bf80878711ba86c20386ea (patch) | |
tree | 41da83a27b9f72908b8ee85fc3c021c2fae19749 /cmake/scripts/common/Macros.cmake | |
parent | bee2116d580b1db5760b4d79a0dd4531caa0a78f (diff) |
[cmake][macro] core_optional_dep dont check required_buildtools
Diffstat (limited to 'cmake/scripts/common/Macros.cmake')
-rw-r--r-- | cmake/scripts/common/Macros.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/scripts/common/Macros.cmake b/cmake/scripts/common/Macros.cmake index d9b1f590f2..e3ae5ed9b1 100644 --- a/cmake/scripts/common/Macros.cmake +++ b/cmake/scripts/common/Macros.cmake @@ -433,7 +433,7 @@ function(core_optional_dep) set(final_message ${final_message} "${depup} enabled: Yes") # We dont want to add a build tool - if (NOT ${depspec} IN_LIST optional_buildtools AND NOT ${depspec} IN_LIST required_buildtools) + if (NOT ${depspec} IN_LIST optional_buildtools) # If dependency is found and is not in the list (eg mariadb/mysql) add to list if (NOT ${depspec} IN_LIST optional_deps) set(optional_deps ${optional_deps} ${depspec} PARENT_SCOPE) |