34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
From 67b2de06ccd249f2b0dcc9b3e196e4fbcb943066 Mon Sep 17 00:00:00 2001
|
|
From: Peter Bergin <peter@berginkonsult.se>
|
|
Date: Fri, 30 Apr 2021 17:24:30 +0200
|
|
Subject: [PATCH] trace-cmd: Changing default install path of plugins
|
|
|
|
README file states that default install path for plugins
|
|
is '/usr/local/lib/trace-cmd/plugins' but Makefile did
|
|
specify other location.
|
|
|
|
Link: https://lore.kernel.org/linux-trace-devel/20210430152430.1958285-1-peter@berginkonsult.se
|
|
|
|
Signed-off-by: Peter Bergin <peter@berginkonsult.se>
|
|
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
|
|
---
|
|
Makefile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index ec73b5c6..0d8fea0d 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -94,7 +94,7 @@ plugin_tracecmd_dir = $(libdir)/trace-cmd/plugins
|
|
python_dir ?= $(libdir)/traceevent/python
|
|
var_dir = $(HOME)/.trace-cmd/
|
|
else
|
|
-plugin_traceevent_dir = $(libdir)/traceevent/plugins
|
|
+plugin_traceevent_dir = $(libdir)/trace-cmd/plugins
|
|
python_dir ?= $(libdir)/trace-cmd/python
|
|
PLUGIN_DIR_TRACEEVENT = -DPLUGIN_TRACEEVENT_DIR="$(plugin_traceevent_dir)"
|
|
PLUGIN_DIR_TRACECMD = -DPLUGIN_TRACECMD_DIR="$(plugin_tracecmd_dir)"
|
|
--
|
|
2.33.0
|
|
|