diff options
author | Ross Burton <ross.burton@intel.com> | 2020-03-10 14:07:01 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-03-11 13:44:02 +0000 |
commit | 2e2f1980e082f3b0588da9c9712a21c412a68d0f (patch) | |
tree | fac23f9e96cfeba6c35ad78bfccb50f5198b9357 /meta/recipes-devtools/gcc/gcc-target.inc | |
parent | 24585a3b8ebb15ed8f88738076eefc8e3211bce1 (diff) | |
download | poky-2e2f1980e082f3b0588da9c9712a21c412a68d0f.tar.gz |
gcc: don't ship build host information in the target gcc-plugins package
The build host configuration isn't reproducible as it varies depending
on the gcc version of the build host. This information isn't useful on the
target anyway so remove it.
(From OE-Core rev: f9154b2c3eff8434914710ab453e13cf338597ec)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-target.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-target.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-target.inc b/meta/recipes-devtools/gcc/gcc-target.inc index 18d078db0a..204f9475fc 100644 --- a/meta/recipes-devtools/gcc/gcc-target.inc +++ b/meta/recipes-devtools/gcc/gcc-target.inc | |||
@@ -179,6 +179,10 @@ do_install () { | |||
179 | # Cleanup manpages.. | 179 | # Cleanup manpages.. |
180 | rm -rf ${D}${mandir}/man7 | 180 | rm -rf ${D}${mandir}/man7 |
181 | 181 | ||
182 | # Don't package details about the build host | ||
183 | rm -f ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/plugin/include/auto-build.h | ||
184 | rm -f ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/plugin/include/bconfig.h | ||
185 | |||
182 | cd ${D}${bindir} | 186 | cd ${D}${bindir} |
183 | 187 | ||
184 | # We care about g++ not c++ | 188 | # We care about g++ not c++ |