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/sbc.recipe | |
parent | fdc21aaee947ec22cdc18af5339b71e76902fec9 (diff) |
Fix hardcoded 'lib' path in recipes files listing
Diffstat (limited to 'recipes/sbc.recipe')
-rw-r--r-- | recipes/sbc.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/sbc.recipe b/recipes/sbc.recipe index 1e98b866..2c3917a9 100644 --- a/recipes/sbc.recipe +++ b/recipes/sbc.recipe @@ -14,7 +14,7 @@ class Recipe(recipe.Recipe): 'tools': 'disabled', } files_libs = ['libsbc'] - files_devel = ['include/sbc/sbc.h', 'lib/pkgconfig/sbc.pc'] + files_devel = ['include/sbc/sbc.h', '%(libdir)s/pkgconfig/sbc.pc'] patches = ['sbc/0001-sbc-Use-stdint.h.patch', 'sbc/0002-Don-t-use-NEON-with-aarch64-on-Clang.patch', 'sbc/0003-sbc.h-Define-ssize_t-when-building-with-MSVC.patch', |