Skip to content
Snippets Groups Projects
Commit 45208225 authored by Ludovico de Nittis's avatar Ludovico de Nittis
Browse files

build-relocatable-install: Include Vulkan shaders


Previously we were missing to include the Vulkan shaders in the
relocatable pressure-vessel tarball. This leaded to `check-vulkan` to
fail because it didn't find the required shaders.

Fixes: #62

Signed-off-by: default avatarLudovico de Nittis <ludovico.denittis@collabora.com>
parent 4363e0dd
No related branches found
No related tags found
No related merge requests found
Pipeline #9768 failed
...@@ -364,6 +364,18 @@ def main(): ...@@ -364,6 +364,18 @@ def main():
), ),
) )
shaders = os.path.join(path, 'shaders')
if os.path.exists(shaders):
install(
shaders,
os.path.join(
installation,
'libexec',
'steam-runtime-tools-0',
'shaders',
),
)
primary_architecture = subprocess.check_output([ primary_architecture = subprocess.check_output([
'dpkg', '--print-architecture', 'dpkg', '--print-architecture',
]).decode('utf-8').strip() ]).decode('utf-8').strip()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment