summaryrefslogtreecommitdiffstats
path: root/tools/perf/Documentation/perf-script-perl.txt
diff options
context:
space:
mode:
authorDavid Ahern2012-08-19 17:46:22 +0200
committerArnaldo Carvalho de Melo2012-08-20 14:30:36 +0200
commite8d0f400ee3247ad22faa6afabfa7022260ef7a5 (patch)
tree7f0f4049d2d3b9e4f97ff5a742e04ed179dab834 /tools/perf/Documentation/perf-script-perl.txt
parentperf ui gtk: Ensure not to call gtk_main_quit() twice (diff)
downloadkernel-qcow2-linux-e8d0f400ee3247ad22faa6afabfa7022260ef7a5.tar.gz
kernel-qcow2-linux-e8d0f400ee3247ad22faa6afabfa7022260ef7a5.tar.xz
kernel-qcow2-linux-e8d0f400ee3247ad22faa6afabfa7022260ef7a5.zip
perf script perl/python: Fix libexec scripts path in Documentation
The libexec path is /libexec/perf-core/scripts/*/Perf-Trace-Util. Signed-off-by: David Ahern <dsahern@gmail.com> Cc: Ingo Molnar <mingo@kernel.org> Link: http://lkml.kernel.org/r/1345391182-71825-1-git-send-email-dsahern@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/Documentation/perf-script-perl.txt')
-rw-r--r--tools/perf/Documentation/perf-script-perl.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/Documentation/perf-script-perl.txt b/tools/perf/Documentation/perf-script-perl.txt
index 3152cca15501..d00bef231340 100644
--- a/tools/perf/Documentation/perf-script-perl.txt
+++ b/tools/perf/Documentation/perf-script-perl.txt
@@ -116,8 +116,8 @@ search path and 'use'ing a few support modules (see module
descriptions below):
----
- use lib "$ENV{'PERF_EXEC_PATH'}/scripts/perl/perf-script-Util/lib";
- use lib "./perf-script-Util/lib";
+ use lib "$ENV{'PERF_EXEC_PATH'}/scripts/perl/Perf-Trace-Util/lib";
+ use lib "./Perf-Trace-Util/lib";
use Perf::Trace::Core;
use Perf::Trace::Context;
use Perf::Trace::Util;