[oe-commits] [openembedded-core] 18/23: libgloss_3.0.0.bb: Fix up mv pattern to include libnosys

git at git.openembedded.org git at git.openembedded.org
Mon Sep 10 20:02:00 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 2866dba2c57ed984837dd3cc0b265319680d724f
Author: Nathan Rossi <nathan at nathanrossi.com>
AuthorDate: Mon Sep 10 12:42:38 2018 +0000

    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]
    
    Signed-off-by: Nathan Rossi <nathan at nathanrossi.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-core/newlib/libgloss_3.0.0.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-core/newlib/libgloss_3.0.0.bb b/meta/recipes-core/newlib/libgloss_3.0.0.bb
index 664a922..727062c 100644
--- a/meta/recipes-core/newlib/libgloss_3.0.0.bb
+++ b/meta/recipes-core/newlib/libgloss_3.0.0.bb
@@ -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}
 }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list