diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-10 11:20:29 +0000 |
---|---|---|
committer | Robert Yang <liezhi.yang@windriver.com> | 2014-01-26 14:08:14 +0800 |
commit | 2c0a74e2a77ffd542cf45868646a054e0952c77a (patch) | |
tree | 0a6eccc88e9037ee0e6af4db244d1bcaa454a8bf | |
parent | 444a8a0b235c0c48685fe84f0c37031906d03921 (diff) | |
download | openembedded-core-2c0a74e2a77ffd542cf45868646a054e0952c77a.tar.gz openembedded-core-2c0a74e2a77ffd542cf45868646a054e0952c77a.tar.bz2 openembedded-core-2c0a74e2a77ffd542cf45868646a054e0952c77a.zip |
gcc-cross-canadian: Fix fortran build
When fortran was enabled, builds were failing due to a extra files.
For now we can remove these and avoid the build failure.
(From OE-Core master rev: 2e60ef7fe63974e443a9ddc25c5eb4249ec37963)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross-canadian.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross-canadian.inc b/meta/recipes-devtools/gcc/gcc-cross-canadian.inc index 900f1e594f..136f26719e 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-canadian.inc +++ b/meta/recipes-devtools/gcc/gcc-cross-canadian.inc @@ -103,6 +103,7 @@ do_install () { # Cleanup some of the ${libdir}{,exec}/gcc stuff ... rm -r ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/install-tools rm -r ${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/install-tools + rm -rf ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/finclude # We care about g++ not c++ rm -f ${D}${bindir}/*c++ |