diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2017-03-08 11:03:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-08 11:26:47 +0000 |
commit | 3658da86e57dc87ac3957b05f853a7f1a56bfab2 (patch) | |
tree | e42c8e56fec27c14db1fc2606586f4cbe3eb4bc3 | |
parent | 8b15b7bd10db83b3390827231b54aeb3452bcb6f (diff) | |
download | openembedded-core-3658da86e57dc87ac3957b05f853a7f1a56bfab2.tar.gz openembedded-core-3658da86e57dc87ac3957b05f853a7f1a56bfab2.tar.bz2 openembedded-core-3658da86e57dc87ac3957b05f853a7f1a56bfab2.zip |
gcc-runtime: Fix QA issue
ERROR: gcc-runtime-6.3.0-r0 do_package: QA Issue: gcc-runtime: Files/directories were installed but not shipped in any package:
/usr/lib/libmpxwrappers.la
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
gcc-runtime: 1 installed and not shipped files. [installed-vs-shipped]
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-runtime.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc index ec8f4a42d0..a5be491ad3 100644 --- a/meta/recipes-devtools/gcc/gcc-runtime.inc +++ b/meta/recipes-devtools/gcc/gcc-runtime.inc @@ -254,6 +254,7 @@ FILES_libmpx = "${libdir}/libmpx.so.* ${libdir}/libmpxwrappers.so.*" SUMMARY_libmpx = "Intel Memory Protection Extension library" FILES_libmpx-dev = "\ ${libdir}/libmpxwrappers.so \ + ${libdir}/libmpxwrappers.la \ ${libdir}/libmpx.so \ ${libdir}/libmpx.la \ ${libdir}/libmpx.spec \ |