From: Andrea Corallo Date: Thu, 16 Jul 2020 09:20:28 +0000 (+0100) Subject: build: Fix TAGS target in gcc/Makefile.in X-Git-Tag: upstream/12.2.0~14780 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=53a1cb8e74950a72dbb9eb1d5d57480f885a2276;p=platform%2Fupstream%2Fgcc.git build: Fix TAGS target in gcc/Makefile.in gcc/ChangeLog: 2020-07-16 Andrea Corallo * Makefile.in (TAGS): Remove 'params.def'. --- diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 2ba7665..4208c62 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -4247,7 +4247,7 @@ TAGS: lang.tags ../include/*.h ../libiberty/*.c \ ../libcpp/*.c ../libcpp/include/*.h \ --language=none --regex="/\(char\|unsigned int\|int\|bool\|void\|HOST_WIDE_INT\|enum [A-Za-z_0-9]+\) [*]?\([A-Za-z_0-9]+\)/\2/" common.opt \ - --language=none --regex="/\(DEF_RTL_EXPR\|DEFTREECODE\|DEFGSCODE\|DEFTIMEVAR\|DEFPARAM\|DEFPARAMENUM5\)[ ]?(\([A-Za-z_0-9]+\)/\2/" rtl.def tree.def gimple.def timevar.def params.def \ + --language=none --regex="/\(DEF_RTL_EXPR\|DEFTREECODE\|DEFGSCODE\|DEFTIMEVAR\|DEFPARAM\|DEFPARAMENUM5\)[ ]?(\([A-Za-z_0-9]+\)/\2/" rtl.def tree.def gimple.def timevar.def \ ; \ etags --include TAGS.sub $$incs)