Hi! When tweaking gcov_cdir, I've noticed libitm has completely useless fincludedir when it doesn't contain any fortran headers/modules. I assume it appeared just as a copy of the libgomp Makefile.am at some point initially.
Fixed thusly, bootstrapped/regtested on x86_64-linux and i686-linux, committed to trunk as obvious. 2019-05-03 Jakub Jelinek <ja...@redhat.com> * Makefile.am (finclude): Remove. * Makefile.in: Regenerated. --- libitm/Makefile.am.jj 2018-11-01 12:05:59.542687510 +0100 +++ libitm/Makefile.am 2019-05-02 18:06:26.504730403 +0200 @@ -12,7 +12,6 @@ abi_version = -fabi-version=4 config_path = @config_path@ search_path = $(addprefix $(top_srcdir)/config/, $(config_path)) $(top_srcdir) -fincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/finclude libsubincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include vpath % $(strip $(search_path)) --- libitm/Makefile.in.jj 2018-11-01 12:05:59.179693490 +0100 +++ libitm/Makefile.in 2019-05-02 18:06:35.585585582 +0200 @@ -458,7 +458,6 @@ SUBDIRS = testsuite gcc_version := $(shell @get_gcc_base_ver@ $(top_srcdir)/../gcc/BASE-VER) abi_version = -fabi-version=4 search_path = $(addprefix $(top_srcdir)/config/, $(config_path)) $(top_srcdir) -fincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/finclude libsubincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include AM_CPPFLAGS = $(addprefix -I, $(search_path)) AM_CFLAGS = $(XCFLAGS) Jakub