diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-04 15:58:30 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-05 11:39:08 +0100 |
commit | 2f22d86f4c2d1d04206990ab1f279462e92d1b48 (patch) | |
tree | 7da3c3bd93d71ab869495eb3302ca5b0db4466a0 /meta/recipes-devtools/gcc/gcc-package-target.inc | |
parent | d420b1c1948408e9e9379dff0e7db8adc4c18a28 (diff) | |
download | poky-2f22d86f4c2d1d04206990ab1f279462e92d1b48.tar.gz |
gcc: Remove unneeded module .la file and .so link
This avoids a QA error.
(From OE-Core rev: 6d284d656e129be526e272f61405d1b004fe0ec9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-package-target.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-package-target.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-package-target.inc b/meta/recipes-devtools/gcc/gcc-package-target.inc index 6cc308c6dc..8c66c72ac9 100644 --- a/meta/recipes-devtools/gcc/gcc-package-target.inc +++ b/meta/recipes-devtools/gcc/gcc-package-target.inc | |||
@@ -72,6 +72,8 @@ do_install () { | |||
72 | # Cleanup some of the ${libdir}{,exec}/gcc stuff ... | 72 | # Cleanup some of the ${libdir}{,exec}/gcc stuff ... |
73 | rm -r ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/install-tools | 73 | rm -r ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/install-tools |
74 | rm -r ${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/install-tools | 74 | rm -r ${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/install-tools |
75 | rm -r ${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/*.so | ||
76 | rm -r ${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/*.la | ||
75 | 77 | ||
76 | # Hack around specs file assumptions | 78 | # Hack around specs file assumptions |
77 | test -f ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/specs && sed -i -e '/^*cross_compile:$/ { n; s/1/0/; }' ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/specs | 79 | test -f ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/specs && sed -i -e '/^*cross_compile:$/ { n; s/1/0/; }' ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/specs |