diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-04-07 00:25:03 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-04-07 00:25:03 +0000 |
commit | f5c98252199e7835ffc8975d245e9cf91b97c918 (patch) | |
tree | 1d73c6676f3b47b20c44b5e154313bffbdcb7ebc /src/patchsets/gdb | |
parent | create lzma patchsets (diff) | |
download | gentoo-f5c98252199e7835ffc8975d245e9cf91b97c918.tar.gz gentoo-f5c98252199e7835ffc8975d245e9cf91b97c918.tar.bz2 gentoo-f5c98252199e7835ffc8975d245e9cf91b97c918.zip |
workaround #216368
Diffstat (limited to 'src/patchsets/gdb')
-rw-r--r-- | src/patchsets/gdb/6.8/20_all_gdb-tdep-opcode-include-workaround.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/patchsets/gdb/6.8/20_all_gdb-tdep-opcode-include-workaround.patch b/src/patchsets/gdb/6.8/20_all_gdb-tdep-opcode-include-workaround.patch new file mode 100644 index 0000000000..4d7d370ac6 --- /dev/null +++ b/src/patchsets/gdb/6.8/20_all_gdb-tdep-opcode-include-workaround.patch @@ -0,0 +1,28 @@ +workaround build failure + +http://bugs.gentoo.org/216368 + +--- gdb/frv-tdep.c ++++ gdb/frv-tdep.c +@@ -32,7 +32,7 @@ + #include "gdb_assert.h" + #include "sim-regno.h" + #include "gdb/sim-frv.h" +-#include "opcodes/frv-desc.h" /* for the H_SPR_... enums */ ++#include "../opcodes/frv-desc.h" /* for the H_SPR_... enums */ + #include "symtab.h" + #include "elf-bfd.h" + #include "elf/frv.h" +--- gdb/mep-tdep.c ++++ gdb/mep-tdep.c +@@ -53,8 +53,8 @@ + + /* Get the user's customized MeP coprocessor register names from + libopcodes. */ +-#include "opcodes/mep-desc.h" +-#include "opcodes/mep-opc.h" ++#include "../opcodes/mep-desc.h" ++#include "../opcodes/mep-opc.h" + + + /* The gdbarch_tdep structure. */ |