diff options
author | Jiri Olsa <jolsa@kernel.org> | 2016-12-06 08:18:50 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-12-06 11:23:03 -0500 |
commit | 8ac1eb7bab7c8d9d6f00b3e2a408611c45d9dff0 (patch) | |
tree | 61c6af231c9e6f9fffc8b14755b39c4172ec950a | |
parent | abb26210a39522a6645bce3f438ed9a26bedb11b (diff) |
perf tools: Move perf build related variables under non fixdep leg
Because there's no need for them in fixdep build.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1481030331-31944-4-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/Makefile.perf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index 33b1d9f8555f..8f1c258b151a 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf | |||
@@ -164,11 +164,6 @@ BISON = bison | |||
164 | STRIP = strip | 164 | STRIP = strip |
165 | AWK = awk | 165 | AWK = awk |
166 | 166 | ||
167 | LIB_DIR = $(srctree)/tools/lib/api/ | ||
168 | TRACE_EVENT_DIR = $(srctree)/tools/lib/traceevent/ | ||
169 | BPF_DIR = $(srctree)/tools/lib/bpf/ | ||
170 | SUBCMD_DIR = $(srctree)/tools/lib/subcmd/ | ||
171 | |||
172 | # include Makefile.config by default and rule out | 167 | # include Makefile.config by default and rule out |
173 | # non-config cases | 168 | # non-config cases |
174 | config := 1 | 169 | config := 1 |
@@ -210,6 +205,11 @@ sub-make: fixdep | |||
210 | 205 | ||
211 | else # force_fixdep | 206 | else # force_fixdep |
212 | 207 | ||
208 | LIB_DIR = $(srctree)/tools/lib/api/ | ||
209 | TRACE_EVENT_DIR = $(srctree)/tools/lib/traceevent/ | ||
210 | BPF_DIR = $(srctree)/tools/lib/bpf/ | ||
211 | SUBCMD_DIR = $(srctree)/tools/lib/subcmd/ | ||
212 | |||
213 | # Set FEATURE_TESTS to 'all' so all possible feature checkers are executed. | 213 | # Set FEATURE_TESTS to 'all' so all possible feature checkers are executed. |
214 | # Without this setting the output feature dump file misses some features, for | 214 | # Without this setting the output feature dump file misses some features, for |
215 | # example, liberty. Select all checkers so we won't get an incomplete feature | 215 | # example, liberty. Select all checkers so we won't get an incomplete feature |