aedi: set explicit sysconfdir for vulkan-loader

this removes temporary build directory from search paths
This commit is contained in:
alexey.lysiuk 2022-08-15 10:34:46 +03:00
parent 39dc52f022
commit 116e54a322

View file

@ -387,7 +387,10 @@ class VulkanLoaderTarget(CMakeStaticDependencyTarget):
'006de2ee5bad4ef797ce4c25df166e09f2e5dd136e99cb507da313aa86770c00')
def configure(self, state: BuildState):
state.options['BUILD_STATIC_LOADER'] = 'YES'
opts = state.options
opts['BUILD_STATIC_LOADER'] = 'YES'
opts['CMAKE_INSTALL_SYSCONFDIR'] = '/usr/local/etc'
super().configure(state)