summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@kernel.org>2019-09-01 14:48:22 +0200
committerArnaldo Carvalho de Melo <acme@redhat.com>2019-09-10 15:33:32 +0200
commit227cb129858a3eb4b874937274b09834ffcc39b0 (patch)
tree123cf7a5087a7a0dccd8bddd94237131ce7f4784
parentperf tests: Add libperf automated test for 'make -C tools/perf build-test' (diff)
downloadlinux-227cb129858a3eb4b874937274b09834ffcc39b0.tar.xz
linux-227cb129858a3eb4b874937274b09834ffcc39b0.zip
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 <jolsa@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Michael Petlan <mpetlan@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lore.kernel.org/lkml/20190901124822.10132-5-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/perf/lib/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/lib/Makefile b/tools/perf/lib/Makefile
index a67efb8d9d39..e325c0503dc6 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)) \