aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/scripts/perl/Perf-Trace-Util/README4
-rw-r--r--tools/perf/util/trace-event-perl.c4
2 files changed, 5 insertions, 3 deletions
diff --git a/tools/perf/scripts/perl/Perf-Trace-Util/README b/tools/perf/scripts/perl/Perf-Trace-Util/README
index adb99aa3a7b..9a970763079 100644
--- a/tools/perf/scripts/perl/Perf-Trace-Util/README
+++ b/tools/perf/scripts/perl/Perf-Trace-Util/README
@@ -36,8 +36,8 @@ INSTALLATION
36Building perf with perf trace Perl scripting should install this 36Building perf with perf trace Perl scripting should install this
37module in the right place. 37module in the right place.
38 38
39You should make sure libperl is installed first e.g. apt-get install 39You should make sure libperl and ExtUtils/Embed.pm are installed first
40libperl-dev. 40e.g. apt-get install libperl-dev or yum install perl-ExtUtils-Embed.
41 41
42DEPENDENCIES 42DEPENDENCIES
43 43
diff --git a/tools/perf/util/trace-event-perl.c b/tools/perf/util/trace-event-perl.c
index 2e1cc3c11c7..51e833fd58c 100644
--- a/tools/perf/util/trace-event-perl.c
+++ b/tools/perf/util/trace-event-perl.c
@@ -577,7 +577,9 @@ struct scripting_ops perl_scripting_ops = {
577void setup_perl_scripting(void) 577void setup_perl_scripting(void)
578{ 578{
579 fprintf(stderr, "Perl scripting not supported." 579 fprintf(stderr, "Perl scripting not supported."
580 " Install libperl-dev[el] and rebuild perf to get it.\n"); 580 " Install libperl and rebuild perf to enable it. e.g. "
581 "apt-get install libperl-dev (ubuntu), yum install "
582 "perl-ExtUtils-Embed (Fedora), etc.\n");
581} 583}
582#else 584#else
583void setup_perl_scripting(void) 585void setup_perl_scripting(void)