This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[obv] Fix "make TAGS" in gdb/ directory


In the gdb-7.5 distribution, "make TAGS" fails:

     $ make TAGS
     make: *** No rule to make target `golang.h', needed by `TAGS'.  Stop.

This happens because HFILES_NO_SRCDIR in gdb/Makefile.in uses golang.h
instead of go-lang.h.

I guess our test suite doesn't include running "make TAGS".  Perhaps
it should.

I committed the following as obvious:

2012-08-18  Eli Zaretskii  <eliz@gnu.org>

	* Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
	The typo broke "make TAGS".


--- gdb/Makefile.in~0	2012-07-02 18:29:33.000000000 +0300
+++ gdb/Makefile.in	2012-08-18 13:15:22.812500000 +0300
@@ -772,7 +772,7 @@
 exec.h m32r-tdep.h osabi.h gdbcore.h solib-som.h amd64bsd-nat.h \
 i386bsd-nat.h xml-support.h xml-tdesc.h alphabsd-tdep.h gdb_obstack.h \
 ia64-tdep.h ada-lang.h ada-varobj.h varobj.h frv-tdep.h nto-tdep.h serial.h \
-c-lang.h d-lang.h golang.h frame.h event-loop.h block.h cli/cli-setshow.h \
+c-lang.h d-lang.h go-lang.h frame.h event-loop.h block.h cli/cli-setshow.h \
 cli/cli-decode.h cli/cli-cmds.h cli/cli-dump.h cli/cli-utils.h \
 cli/cli-script.h macrotab.h symtab.h version.h \
 gnulib/import/string.in.h gnulib/import/str-two-way.h \


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]