diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-05-14 01:11:04 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-14 11:43:56 +0100 |
commit | a3eda321a6abde5367795be3eb9e393921e576c6 (patch) | |
tree | 998eab6d7ff63c7fb3ff02446641e9f7c49516f7 /meta/recipes-devtools/gcc | |
parent | b12d79ef5e601f3399f1a8f51c97b3795f54dc2a (diff) | |
download | poky-a3eda321a6abde5367795be3eb9e393921e576c6.tar.gz |
gcc-5: fix installed-vs-shipped
gcc-5.1.0: gcc: Files/directories were installed but not shipped in any package:
/usr/bin/i586-poky-linux-gcov-tool
(From OE-Core rev: 3e2ca755624c13a8249ac66672ebf4d8d7217e62)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-target.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-target.inc b/meta/recipes-devtools/gcc/gcc-target.inc index e3485172a7..5d314460c0 100644 --- a/meta/recipes-devtools/gcc/gcc-target.inc +++ b/meta/recipes-devtools/gcc/gcc-target.inc | |||
@@ -83,8 +83,12 @@ FILES_cpp = "\ | |||
83 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/cc1" | 83 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/cc1" |
84 | FILES_cpp-symlinks = "${bindir}/cpp" | 84 | FILES_cpp-symlinks = "${bindir}/cpp" |
85 | 85 | ||
86 | FILES_gcov = "${bindir}/${TARGET_PREFIX}gcov" | 86 | FILES_gcov = "${bindir}/${TARGET_PREFIX}gcov \ |
87 | FILES_gcov-symlinks = "${bindir}/gcov" | 87 | ${bindir}/${TARGET_PREFIX}gcov-tool \ |
88 | " | ||
89 | FILES_gcov-symlinks = "${bindir}/gcov \ | ||
90 | ${bindir}/gcov-tool \ | ||
91 | " | ||
88 | 92 | ||
89 | FILES_g++ = "\ | 93 | FILES_g++ = "\ |
90 | ${bindir}/${TARGET_PREFIX}g++ \ | 94 | ${bindir}/${TARGET_PREFIX}g++ \ |