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/speex.recipe | |
parent | fdc21aaee947ec22cdc18af5339b71e76902fec9 (diff) |
Fix hardcoded 'lib' path in recipes files listing
Diffstat (limited to 'recipes/speex.recipe')
-rw-r--r-- | recipes/speex.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/speex.recipe b/recipes/speex.recipe index f01d347a..74a318c0 100644 --- a/recipes/speex.recipe +++ b/recipes/speex.recipe @@ -13,7 +13,7 @@ class Recipe(recipe.Recipe): files_libs = ['libspeex'] files_bins = ['speexdec', 'speexenc'] - files_devel = ['include/speex', 'lib/pkgconfig/speex.pc'] + files_devel = ['include/speex', '%(libdir)s/pkgconfig/speex.pc'] def prepare(self): if self.config.target_platform == Platform.ANDROID: |