diff options
author | Jiri Olsa <jolsa@kernel.org> | 2015-03-01 14:58:24 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-03-18 14:10:03 -0400 |
commit | a15599ac6bd2e6196f3aeb2fb08af73129621fe1 (patch) | |
tree | 6a5531060bb2503e23f6bbf1662538a6a6d3df49 /tools | |
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 <jolsa@kernel.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: David Ahern <david.ahern@oracle.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/n/tip-ciaflab01mf0ljmfb9xr4p41@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-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))) | |||
816 | 816 | ||
817 | ifeq ($(VF),1) | 817 | ifeq ($(VF),1) |
818 | feature_display := 1 | 818 | feature_display := 1 |
819 | display_vf := 1 | 819 | feature_verbose := 1 |
820 | endif | 820 | endif |
821 | 821 | ||
822 | ifeq ($(feature_display),1) | 822 | ifeq ($(feature_display),1) |
@@ -829,7 +829,7 @@ ifeq ($(feature_display),1) | |||
829 | endif | 829 | endif |
830 | endif | 830 | endif |
831 | 831 | ||
832 | ifeq ($(display_vf),1) | 832 | ifeq ($(feature_verbose),1) |
833 | TMP := $(filter-out $(FEATURE_DISPLAY),$(FEATURE_TESTS)) | 833 | TMP := $(filter-out $(FEATURE_DISPLAY),$(FEATURE_TESTS)) |
834 | $(foreach feat,$(TMP),$(call feature_print_status,$(feat),)) | 834 | $(foreach feat,$(TMP),$(call feature_print_status,$(feat),)) |
835 | $(info ) | 835 | $(info ) |