From: Patrick McLean <patrick.mclean@xxxxxxxx> The trace-cmd build system installs headers for building kernelshark, but it is missing trace-seq.h and trace-filter-hash.h. It additionally installs event-parse.h to the toplevel "trace-cmd" include directory, but the generated header includes it as "traceevent/event-parse.h" so the kernelshark build fails. This patch installs all the headers needed to build kernelshark to the appropiate directories. Signed-off-by: Patrick McLean <patrick.mclean@xxxxxxxx> --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6b85e21..3bab851 100644 --- a/Makefile +++ b/Makefile @@ -345,8 +345,10 @@ install_gui: install_cmd gui install_libs: libs $(Q)$(call do_install,$(LIBTRACECMD_SHARED),$(libdir_SQ)) $(Q)$(call do_install,$(LIBTRACEEVENT_SHARED),$(libdir_SQ)) - $(Q)$(call do_install,$(src)/include/traceevent/event-parse.h,$(includedir_SQ)) + $(Q)$(call do_install,$(src)/include/traceevent/event-parse.h,$(includedir_SQ)/traceevent) + $(Q)$(call do_install,$(src)/include/traceevent/trace-seq.h,$(includedir_SQ)/traceevent) $(Q)$(call do_install,$(src)/include/trace-cmd/trace-cmd.h,$(includedir_SQ)) + $(Q)$(call do_install,$(src)/include/trace-cmd/trace-filter-hash.h,$(includedir_SQ)) doc: $(MAKE) -C $(src)/Documentation all -- 2.22.0