diff options
author | Jiri Olsa <[email protected]> | 2015-03-01 20:58:24 +0100 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2015-03-18 15:10:03 -0300 |
commit | a15599ac6bd2e6196f3aeb2fb08af73129621fe1 (patch) | |
tree | 6a5531060bb2503e23f6bbf1662538a6a6d3df49 | |
parent | 48e383eca276c02d4bd5c5b468b07b73ca52dd08 (diff) |
perf build: Rename display_vf to feature_verbose
Preparing for feature checks separation, moving related
stuff under 'feature*' namespace.
Signed-off-by: Jiri Olsa <[email protected]>
Cc: Corey Ashford <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/config/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile index f80fc7ec8036..370ad509422b 100644 --- a/tools/perf/config/Makefile +++ b/tools/perf/config/Makefile @@ -816,7 +816,7 @@ $(foreach feat,$(FEATURE_DISPLAY),$(call feature_check,$(feat))) ifeq ($(VF),1) feature_display := 1 - display_vf := 1 + feature_verbose := 1 endif ifeq ($(feature_display),1) @@ -829,7 +829,7 @@ ifeq ($(feature_display),1) endif endif -ifeq ($(display_vf),1) +ifeq ($(feature_verbose),1) TMP := $(filter-out $(FEATURE_DISPLAY),$(FEATURE_TESTS)) $(foreach feat,$(TMP),$(call feature_print_status,$(feat),)) $(info ) |