diff options
author | Matthew McClintock <msm@freescale.com> | 2012-07-13 13:35:50 -0500 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2012-07-18 00:34:36 -0700 |
commit | fee3def2ca49e3349758d9cd9a9cf5645f03cf18 (patch) | |
tree | 99f909b2a71ee04c64b7d02ad4ee2f30b09f1060 /meta/recipes-devtools | |
parent | 2bd0aaf98c5d586638d82f5f22c1c24122a889a3 (diff) | |
download | openembedded-core-fee3def2ca49e3349758d9cd9a9cf5645f03cf18.tar.gz openembedded-core-fee3def2ca49e3349758d9cd9a9cf5645f03cf18.tar.bz2 openembedded-core-fee3def2ca49e3349758d9cd9a9cf5645f03cf18.zip |
gcc-package-runtime.inc: Fix QA warning
> ERROR: QA Issue: gcc-runtime: Files/directories were installed but not shipped
> /usr/lib/libgomp.so.1.0.0
> /usr/lib/libgomp.so.1
Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-package-runtime.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-package-runtime.inc b/meta/recipes-devtools/gcc/gcc-package-runtime.inc index a81e3b7879..75847b6b92 100644 --- a/meta/recipes-devtools/gcc/gcc-package-runtime.inc +++ b/meta/recipes-devtools/gcc/gcc-package-runtime.inc @@ -64,8 +64,9 @@ FILES_libmudflap-dev = "\ ${libdir}/libmudflap*.a \ ${libdir}/libmudflap*.la" +FILES_libgomp = "${libdir}/libgomp*${SOLIBS}" FILES_libgomp-dev = "\ - ${libdir}/libgomp*.so \ + ${libdir}/libgomp*${SOLIBSDEV} \ ${libdir}/libgomp*.la \ ${libdir}/libgomp.spec \ ${libdir}/gcc/${TARGET_SYS}/${BINV}/include/omp.h \ |