aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2015-02-28 03:39:09 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-03-02 10:15:55 -0500
commita954e68402f9cac000ad7ea57df6040fe5ef455a (patch)
tree05d10300877f4f2fc68734e09911d49a43a1e217 /tools
parent6c5aa23704e2786eb1a2a733165eef95c4375f41 (diff)
perf tools: Improve libperl detection message
Before: Missing perl devel files. Disabling perl scripting support, consider installing perl-ExtUtils-Embed After: Missing perl devel files. Disabling perl scripting support, please install perl-ExtUtils-Embed/libperl-dev Change the message to the standard 'please install' language and adds Debian-ish package suggestion. Signed-off-by: Ingo Molnar <mingo@kernel.org> Cc: David Ahern <david.ahern@oracle.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/20150228083909.GC31887@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/config/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile
index d3efeef58ded..aa2f0aa97e5e 100644
--- a/tools/perf/config/Makefile
+++ b/tools/perf/config/Makefile
@@ -531,7 +531,7 @@ else
531 ifneq ($(feature-libperl), 1) 531 ifneq ($(feature-libperl), 1)
532 CFLAGS += -DNO_LIBPERL 532 CFLAGS += -DNO_LIBPERL
533 NO_LIBPERL := 1 533 NO_LIBPERL := 1
534 msg := $(warning Missing perl devel files. Disabling perl scripting support, consider installing perl-ExtUtils-Embed); 534 msg := $(warning Missing perl devel files. Disabling perl scripting support, please install perl-ExtUtils-Embed/libperl-dev);
535 else 535 else
536 LDFLAGS += $(PERL_EMBED_LDFLAGS) 536 LDFLAGS += $(PERL_EMBED_LDFLAGS)
537 EXTLIBS += $(PERL_EMBED_LIBADD) 537 EXTLIBS += $(PERL_EMBED_LIBADD)