From: Jiri Olsa Date: Sun, 1 Sep 2019 12:48:22 +0000 (+0200) Subject: libperf: Add missing event.h file to install rule X-Git-Tag: v5.15~5411^2~3^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=227cb129858a3eb4b874937274b09834ffcc39b0;p=platform%2Fkernel%2Flinux-starfive.git libperf: Add missing event.h file to install rule So that this development header is properly installed and can be found by tools linking with libperf. Signed-off-by: Jiri Olsa Cc: Alexander Shishkin Cc: Michael Petlan Cc: Namhyung Kim Cc: Peter Zijlstra Link: http://lore.kernel.org/lkml/20190901124822.10132-5-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/lib/Makefile b/tools/perf/lib/Makefile index a67efb8..e325c05 100644 --- a/tools/perf/lib/Makefile +++ b/tools/perf/lib/Makefile @@ -146,6 +146,7 @@ install_headers: $(call do_install,include/perf/threadmap.h,$(prefix)/include/perf,644); \ $(call do_install,include/perf/evlist.h,$(prefix)/include/perf,644); \ $(call do_install,include/perf/evsel.h,$(prefix)/include/perf,644); + $(call do_install,include/perf/event.h,$(prefix)/include/perf,644); install_pkgconfig: $(LIBPERF_PC) $(call QUIET_INSTALL, $(LIBPERF_PC)) \