diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2009-04-21 20:19:13 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2009-04-21 20:19:13 +0000 |
commit | cfd5360553473b50cccc235545f3ac8b332de9bb (patch) | |
tree | 909539b4294dbbdde88443b2b098c769201bee68 /gdb/Makefile.in | |
parent | 26e251b60395cf60fd81e6e10ab2c487f75f0164 (diff) | |
download | gdb-cfd5360553473b50cccc235545f3ac8b332de9bb.zip gdb-cfd5360553473b50cccc235545f3ac8b332de9bb.tar.gz gdb-cfd5360553473b50cccc235545f3ac8b332de9bb.tar.bz2 |
* configure.ac: Don't postprocess Makefile in config.status.
Substitute GDB_NM_FILE. Don't substitute nm_h.
* Makefile.in (GDB_NM_FILE): Substitute.
(TAGS): Use $(GDB_NM_FILE) instead of $(NAT_FILE).
* configure: Regenerate.
* gnulib/Makefile.in: Regenerate.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 8ee2dfe..8a58425 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1107,9 +1107,10 @@ gdb1$(EXEEXT): gdb$(EXEEXT) # TAGS depends on all the files that go into it so you can rebuild TAGS # with `make TAGS' and not have to say `rm TAGS' first. +GDB_NM_FILE = @GDB_NM_FILE@ TAGS: $(DEPFILES) $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR) @echo Making TAGS - @etags $(srcdir)/$(NAT_FILE) \ + @etags $(srcdir)/$(GDB_NM_FILE) \ `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \ echo $(srcdir)/$$i ; \ done ; for i in $(TAGFILES_WITH_SRCDIR); do \ |