We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4443094 commit 2ad03a0Copy full SHA for 2ad03a0
mesonbuild/coredata.py
@@ -147,8 +147,8 @@ class DependencyCache:
147
def __init__(self, builtins: options.OptionStore, for_machine: MachineChoice):
148
self.__cache: T.MutableMapping[TV_DepID, DependencySubCache] = OrderedDict()
149
self.__builtins = builtins
150
- self.__pkg_conf_key = options.OptionKey('pkg_config_path')
151
- self.__cmake_key = options.OptionKey('cmake_prefix_path')
+ self.__pkg_conf_key = options.OptionKey('pkg_config_path', machine=for_machine)
+ self.__cmake_key = options.OptionKey('cmake_prefix_path', machine=for_machine)
152
153
def __calculate_subkey(self, type_: DependencyCacheType) -> T.Tuple[str, ...]:
154
data: T.Dict[DependencyCacheType, T.List[str]] = {
0 commit comments