aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@redhat.com>2012-12-19 09:52:21 +0100
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-01-24 16:40:12 -0300
commit09ecbb07a5c9fa31dc72ee8fb1c3fbd1145448dd (patch)
treedb677fca8854046c5c4d050311f069c2e11586f9 /tools
parent876650e6c3209861a8949111140d805b3440951f (diff)
downloadlibata-dev-09ecbb07a5c9fa31dc72ee8fb1c3fbd1145448dd.tar.gz
perf tests: Fix PYTHONPATH for python-use test tracepoints
If there's not OUTPUT variable defined the PYTHONPATH ends up with /python. We need to remove the extra '/'. Signed-off-by: Jiri Olsa <jolsa@redhat.com> Link: http://lkml.kernel.org/n/tip-h1hzfyfcdxjnuq9fin2cjwlr@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index 3158f457b6aef..1539eb4d97a01 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -958,7 +958,7 @@ $(OUTPUT)tests/attr.o: tests/attr.c $(OUTPUT)PERF-CFLAGS
$(OUTPUT)tests/python-use.o: tests/python-use.c $(OUTPUT)PERF-CFLAGS
$(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) \
- -DPYTHONPATH='"$(OUTPUT)/python"' \
+ -DPYTHONPATH='"$(OUTPUT)python"' \
-DPYTHON='"$(PYTHON_WORD)"' \
$<