diff options
author | Nathan Sidwell <nathan@acm.org> | 2018-08-20 14:20:04 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2018-08-20 14:20:04 +0000 |
commit | abcd1775e067600918da69330f8ff3f1f6734b4c (patch) | |
tree | ecd0afb0d6987e07b9ccde4522a227e6a3b998a0 /libcpp/Makefile.in | |
parent | 4864297f7858617a5fe406d3651a46446b41db7a (diff) | |
download | gcc-abcd1775e067600918da69330f8ff3f1f6734b4c.zip gcc-abcd1775e067600918da69330f8ff3f1f6734b4c.tar.gz gcc-abcd1775e067600918da69330f8ff3f1f6734b4c.tar.bz2 |
[PATCH] Kill cpp-id-data.h
https://gcc.gnu.org/ml/gcc-patches/2018-08/msg01149.html
libcpp/
* Makefile.in (TAGS_SOURCES): Remove cpp-id-data.h.
* include/cpp-id-data.h: Delete.
* internal.h: Include cpplib.h not cpp-id-data.h.
gcc/
* Makefile.in (CPP_ID_DATA_H): Delete.
(CPP_INTERNAL_H): Don't add it.
(GTFILES): Replace CPP_ID_DATA_H with CPPLIB_H.
* gengtype.c (open_base_files): Replace cpp-id-data.h with cpplib.h
From-SVN: r263663
Diffstat (limited to 'libcpp/Makefile.in')
-rw-r--r-- | libcpp/Makefile.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libcpp/Makefile.in b/libcpp/Makefile.in index bfd6069..835c835 100644 --- a/libcpp/Makefile.in +++ b/libcpp/Makefile.in @@ -261,9 +261,8 @@ po/$(PACKAGE).pot: $(libcpp_a_SOURCES) sed 's:$(srcdir)/::g' <po/$(PACKAGE).pot.tmp >po/$(PACKAGE).pot rm po/$(PACKAGE).pot.tmp -TAGS_SOURCES = $(libcpp_a_SOURCES) internal.h ucnid.h \ - include/line-map.h include/symtab.h include/cpp-id-data.h \ - include/cpplib.h include/mkdeps.h system.h +TAGS_SOURCES = $(libcpp_a_SOURCES) internal.h system.h ucnid.h \ + include/cpplib.h include/line-map.h include/mkdeps.h include/symtab.h TAGS: $(TAGS_SOURCES) cd $(srcdir) && etags $(TAGS_SOURCES) |