diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2020-10-14 18:45:58 +0200 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2023-03-14 18:07:09 +0100 |
commit | 9de0333e8ba26a50561a7e8e14041a3332729fff (patch) | |
tree | c678427fe80fa3bf468f4bf5700272feba13c4bc /recipes/gst-shell.recipe | |
parent | fdc21aaee947ec22cdc18af5339b71e76902fec9 (diff) |
Fix hardcoded 'lib' path in recipes files listing
Diffstat (limited to 'recipes/gst-shell.recipe')
-rw-r--r-- | recipes/gst-shell.recipe | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/recipes/gst-shell.recipe b/recipes/gst-shell.recipe index 4e9be948..4706a325 100644 --- a/recipes/gst-shell.recipe +++ b/recipes/gst-shell.recipe @@ -16,12 +16,11 @@ class Recipe(recipe.Recipe): from cerbero.commands.gensdkshell import GenSdkShell name = self.files_shell[0] prefix = self.config.prefix - libdir = os.path.join(prefix, 'lib') py_prefix = self.config.py_prefix output_dir = prefix gensdkshell = GenSdkShell() - gensdkshell.runargs(self.config, name, output_dir, prefix, libdir, + gensdkshell.runargs(self.config, name, output_dir, prefix, self.config.libdir, py_prefix) name = self.files_shell[1] - gensdkshell.runargs(self.config, name, output_dir, prefix, libdir, + gensdkshell.runargs(self.config, name, output_dir, prefix, self.config.libdir, py_prefix, cmd='') |