diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2023-08-13 17:26:45 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-08-13 10:38:14 -0700 |
commit | e89194c3aac90790544128c2ac428c73cbe5c8b5 (patch) | |
tree | 43b0b0e87901e20b3db7c3b18057efc82961fb55 /meta-multimedia/recipes-multimedia | |
parent | ce208790e575912ecff9678ad57502517a2a8f03 (diff) | |
download | meta-openembedded-e89194c3aac90790544128c2ac428c73cbe5c8b5.tar.gz |
openh264: fix installed-vs-shared QA issue with multilib
* in some cases libdir is /usr/lib64 and then libraries installed in /usr/lib aren't packaged:
ERROR: QA Issue: openh264: Files/directories were installed but not shipped in any package:
/usr/lib/libopenh264.a
/usr/lib/libopenh264.so.2.1.1
/usr/lib/libopenh264.so
/usr/lib/libopenh264.so.6
/usr/lib/pkgconfig
/usr/lib/pkgconfig/openh264.pc
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
openh264: 6 installed and not shipped files. [installed-vs-shipped]
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-multimedia')
-rw-r--r-- | meta-multimedia/recipes-multimedia/openh264/openh264_2.3.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-multimedia/recipes-multimedia/openh264/openh264_2.3.1.bb b/meta-multimedia/recipes-multimedia/openh264/openh264_2.3.1.bb index 3fa87d05f..89b1ea58c 100644 --- a/meta-multimedia/recipes-multimedia/openh264/openh264_2.3.1.bb +++ b/meta-multimedia/recipes-multimedia/openh264/openh264_2.3.1.bb | |||
@@ -45,7 +45,7 @@ do_compile() { | |||
45 | } | 45 | } |
46 | 46 | ||
47 | do_install() { | 47 | do_install() { |
48 | oe_runmake install DESTDIR=${D} PREFIX=${prefix} | 48 | oe_runmake install DESTDIR=${D} PREFIX=${prefix} LIBDIR_NAME=${baselib} SHAREDLIB_DIR=${libdir} |
49 | } | 49 | } |
50 | 50 | ||
51 | CLEANBROKEN = "1" | 51 | CLEANBROKEN = "1" |