diff options
author | Mike Gulick <mike.gulick@mathworks.com> | 2017-10-30 20:11:52 -0400 |
---|---|---|
committer | Sergio Durigan Junior <sergiodj@redhat.com> | 2017-10-30 21:30:10 -0400 |
commit | f871c4853a9725682011c2314ea4308f3c34bd8d (patch) | |
tree | 58f46c34eb205e4fab5a4f975a1d44f1b3b04c61 | |
parent | 916296ccea146c9b9517e00494bde307f2af7efa (diff) | |
download | gdb-f871c4853a9725682011c2314ea4308f3c34bd8d.zip gdb-f871c4853a9725682011c2314ea4308f3c34bd8d.tar.gz gdb-f871c4853a9725682011c2314ea4308f3c34bd8d.tar.bz2 |
gdb/Makefile.in: fix 'make tags' failure
'make tags' fails with the following error:
make[2]: Entering directory '/local-ssd/mgulick/gdb/git/binutils-gdb/gdb'
make[2]: *** No rule to make target 'gdb.h', needed by 'TAGS'. Stop.
make[2]: Leaving directory '/local-ssd/mgulick/gdb/git/binutils-gdb/gdb'
The file gdb/gdb.h was removed in commit
65630365f7d073430e62b4fe65f34dcdc0a4b05e.
gdb/ChangeLog:
2017-10-30 Mike Gulick <mgulick@mathworks.com>
* Makefile.in (HFILES_NO_SRCDIR): Remove reference to gdb.h.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/Makefile.in | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5a680ed..a72cc74 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2017-10-30 Mike Gulick <mgulick@mathworks.com> + + * Makefile.in (HFILES_NO_SRCDIR): Remove reference to gdb.h. + 2017-10-30 Simon Marchi <simon.marchi@ericsson.com> * common/common-utils.h (in_inclusive_range): New function. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 6cb0970..1a68746 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1346,7 +1346,6 @@ HFILES_NO_SRCDIR = \ frv-tdep.h \ ft32-tdep.h \ gcore.h \ - gdb.h \ gdb_bfd.h \ gdb_curses.h \ gdb-dlfcn.h \ |