Skip to content

Commit 70ff7c6

Browse files
David Carrillo-Cisnerosacmel
authored andcommitted
perf tools: Pass full path of FEATURES_DUMP
When building with an external FEATURES_DUMP, bpf complains that features dump file is not found. Fix it by passing full file path. Signed-off-by: David Carrillo-Cisneros <[email protected]> Acked-by: Jiri Olsa <[email protected]> Cc: Alexander Shishkin <[email protected]> Cc: Paul Turner <[email protected]> Cc: Stephane Eranian <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
1 parent 3866058 commit 70ff7c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/perf/Makefile.perf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ endif
240240
ifeq ($(FEATURES_DUMP),)
241241
FEATURE_DUMP_EXPORT := $(realpath $(OUTPUT)FEATURE-DUMP)
242242
else
243-
FEATURE_DUMP_EXPORT := $(FEATURES_DUMP)
243+
FEATURE_DUMP_EXPORT := $(realpath $(FEATURES_DUMP))
244244
endif
245245

246246
export prefix bindir sharedir sysconfdir DESTDIR

0 commit comments

Comments
 (0)