mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 09:32:11 +02:00
libgloss_3.0.0.bb: Fix up mv pattern to include libnosys
When installing libgloss libraries handle the ${TARGET_SYS}/lib contents
so that it is placed in ${libdir} instead of ${libdir}/lib. This
resolves a packaging QA issue.
ERROR: libgloss-3.0.0-r0 do_package: QA Issue: libgloss:
Files/directories were installed but not shipped in any package:
/usr/lib/lib
/usr/lib/lib/libnosys.a
/usr/lib/lib/nosys.specs
Please set FILES such that these items are packaged. Alternatively
if they are unneeded, avoid installing them or delete them within
do_install.
libgloss: 3 installed and not shipped files. [installed-vs-shipped]
(From OE-Core rev: 69ce8ba6cc610f310ae28d988d487918906e6ef9)
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
b7e3f3ff4b
commit
7670b7b4cc
@@ -18,9 +18,10 @@ do_install_prepend() {
|
||||
|
||||
do_install_append() {
|
||||
# Move libs to default directories so they can be picked up later
|
||||
mv -v ${D}${prefix}/${TARGET_SYS}/lib ${D}${libdir}
|
||||
mv -v ${D}${prefix}/${TARGET_SYS}/lib/* ${D}${libdir}
|
||||
|
||||
# Remove original directory
|
||||
rmdir ${D}${prefix}/${TARGET_SYS}/lib
|
||||
rmdir ${D}${prefix}/${TARGET_SYS}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user