diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/Makefile.in | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cb02278..960d430 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2010-03-23 Mike Frysinger <vapier@gentoo.org> + + * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/.. + 2010-03-22 Stan Shebs <stan@codesourcery.com> * value.c (value_static_field): Be lazy about the field's value. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 9a02ba1..72b546d 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -309,7 +309,8 @@ OPCODES = $(OPCODES_DIR)/libopcodes.a # Where are the other opcode tables which only have header file # versions? OP_INCLUDE = $(INCLUDE_DIR)/opcode -OPCODES_CFLAGS = -I$(OP_INCLUDE) +# Some source files like to use #include "opcodes/file.h" +OPCODES_CFLAGS = -I$(OP_INCLUDE) -I$(OPCODES_SRC)/.. # The simulator is usually nonexistent; targets that include one # should set this to list all the .o or .a files to be linked in. |