mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-26 00:00:39 -05:00
796dea67a6
Currently, once pkg_check_modules succeeds, it will never call _pkg_check_modules_internal again. That means that if the parameters to pkg_check_modules are changed, cmake will be called to reconfigure, but nothing will change. This change is to store the full string of arguments to pkg_check_modules and override the FOUND optimization so that the arguments are reevaluated when modified.
8 lines
280 B
ReStructuredText
8 lines
280 B
ReStructuredText
pkg-config-recheck
|
|
------------------
|
|
|
|
* Calls to the :module:`FindPkgConfig` module :command:`pkg_check_modules`
|
|
command following a successful call learned to re-evaluate the cached values
|
|
for a given prefix after changes to the parameters to the command for that
|
|
prefix.
|