diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2010-06-15 18:28:17 +0400 |
---|---|---|
committer | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2010-06-15 18:39:28 +0400 |
commit | 163cf0f103a555e4fe2959485b3170bbbe6d0bc3 (patch) | |
tree | bac0e21f5c68591e7969b158b9699c171cc540b1 /recipes/gdb | |
parent | d54f431864518aec0b66269649c8e17916dbd400 (diff) |
gdb-cross-sdk: drop bfd&opcodes messages from the archive
As a way to restore meta-toolchain generation, drop bfd.mo and
opcodes.mo from gdb-cross-sdk archives, as these files clash with ones
from binutils-cross-sdk.
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Diffstat (limited to 'recipes/gdb')
-rw-r--r-- | recipes/gdb/gdb-cross-sdk.inc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/recipes/gdb/gdb-cross-sdk.inc b/recipes/gdb/gdb-cross-sdk.inc index 3e6f509057..c78d950d0a 100644 --- a/recipes/gdb/gdb-cross-sdk.inc +++ b/recipes/gdb/gdb-cross-sdk.inc @@ -1,7 +1,7 @@ require gdb-cross.inc LICENSE = "GPLv3" -INC_PR = "r3" +INC_PR = "r4" inherit sdk @@ -11,3 +11,9 @@ do_stage() { : } +do_install_append() { + # these mo files from gdb-cross-sdk clash with files from binutils-cross-sdk + # when building sdk archives. Drop them for now as a way to restore toolchains. + rm ${D}/${datadir}/locale/*/LC_MESSAGES/{bfd,opcodes}.mo +} + |