diff mbox series

trace-cmd: Changing default install path of plugins

Message ID 20210430152430.1958285-1-peter@berginkonsult.se (mailing list archive)
State Accepted
Commit 67b2de06ccd249f2b0dcc9b3e196e4fbcb943066
Headers show
Series trace-cmd: Changing default install path of plugins | expand

Commit Message

Peter Bergin April 30, 2021, 3:24 p.m. UTC
From: Peter Bergin <peter@berginkonsult.se>

README file states that default install path for plugins
is '/usr/local/lib/trace-cmd/plugins' but Makefile did
specify other location.

Signed-off-by: Peter Bergin <peter@berginkonsult.se>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Steven Rostedt May 6, 2021, 8:26 p.m. UTC | #1
On Fri, 30 Apr 2021 17:24:30 +0200
peter@berginkonsult.se wrote:

> README file states that default install path for plugins
> is '/usr/local/lib/trace-cmd/plugins' but Makefile did
> specify other location.

I queued this up. Thanks Peter!

-- Steve
diff mbox series

Patch

diff --git a/Makefile b/Makefile
index ec73b5c..0d8fea0 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)"