diff options
| author | Matthew McClintock <msm@freescale.com> | 2012-07-13 13:35:50 -0500 |
|---|---|---|
| committer | Scott Garman <scott.a.garman@intel.com> | 2012-07-31 15:07:10 -0700 |
| commit | 4ec107f822453bd9468009d7a2124a3d592610b5 (patch) | |
| tree | 7b39f9e5fc70324a3a4a03a931fd9329bc69edb9 | |
| parent | 6e9cfa4ba34d8899dfb271818ef30730de8353fa (diff) | |
| download | openembedded-core-4ec107f822453bd9468009d7a2124a3d592610b5.tar.gz openembedded-core-4ec107f822453bd9468009d7a2124a3d592610b5.tar.bz2 openembedded-core-4ec107f822453bd9468009d7a2124a3d592610b5.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>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -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 9962615920..eeec957595 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 \ |
