aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/config/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile
index e7f83b15fcbf..81d8c2bbc4df 100644
--- a/tools/perf/config/Makefile
+++ b/tools/perf/config/Makefile
@@ -805,14 +805,14 @@ ifneq ("$(FEATURE_DUMP)","$(FEATURE_DUMP_FILE)")
805 feature_display := 1 805 feature_display := 1
806endif 806endif
807 807
808feature_check = $(eval $(feature_check_code)) 808feature_display_check = $(eval $(feature_check_code))
809define feature_check_code 809define feature_display_check_code
810 ifneq ($(feature-$(1)), 1) 810 ifneq ($(feature-$(1)), 1)
811 feature_display := 1 811 feature_display := 1
812 endif 812 endif
813endef 813endef
814 814
815$(foreach feat,$(FEATURE_DISPLAY),$(call feature_check,$(feat))) 815$(foreach feat,$(FEATURE_DISPLAY),$(call feature_display_check,$(feat)))
816 816
817ifeq ($(VF),1) 817ifeq ($(VF),1)
818 feature_display := 1 818 feature_display := 1