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/libogg.recipe | |
parent | fdc21aaee947ec22cdc18af5339b71e76902fec9 (diff) |
Fix hardcoded 'lib' path in recipes files listing
Diffstat (limited to 'recipes/libogg.recipe')
-rw-r--r-- | recipes/libogg.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/libogg.recipe b/recipes/libogg.recipe index 635a71f7..0c7a1c26 100644 --- a/recipes/libogg.recipe +++ b/recipes/libogg.recipe @@ -12,7 +12,7 @@ class Recipe(recipe.Recipe): patches = [] files_libs = ['libogg'] - files_devel = ['include/ogg', 'lib/pkgconfig/ogg.pc', 'share/aclocal/ogg.m4'] + files_devel = ['include/ogg', '%(libdir)s/pkgconfig/ogg.pc', 'share/aclocal/ogg.m4'] async def configure(self): if self.config.target_platform == Platform.IOS: |