diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-10 11:20:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-02 11:19:10 +0000 |
commit | 2e60ef7fe63974e443a9ddc25c5eb4249ec37963 (patch) | |
tree | 1ffe91e65ee0107eb1367574f5fa614de5dd0a0e /meta/recipes-devtools | |
parent | b3cccee0c66ce744a79843a5dd9798475c84e23c (diff) | |
download | openembedded-core-2e60ef7fe63974e443a9ddc25c5eb4249ec37963.tar.gz openembedded-core-2e60ef7fe63974e443a9ddc25c5eb4249ec37963.tar.bz2 openembedded-core-2e60ef7fe63974e443a9ddc25c5eb4249ec37963.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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-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++ |