aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/api/Build
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2016-07-29 10:53:50 -0400
committerIngo Molnar <mingo@kernel.org>2016-07-29 10:53:50 -0400
commit9ecabeded80b0ea60a75a8ed7df0c90cd36e6a3d (patch)
tree509034188b1438ddd9f572e378caf69d0866bd12 /tools/lib/api/Build
parente4b3e0694bbc0350251e22abc215a7ff506f9162 (diff)
parent8149a774d53afeaf5eb337a813f828f8b8ce68da (diff)
Merge tag 'perf-urgent-for-mingo-20160728' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent
Pull perf/urgent fix from Arnaldo Carvalho de Melo: - Fix the tools/vm/ build by making libapi provide the str_error_c function, that libapi uses but wasn't part of the list of objects linked with tools/vm/ programs. (Arnaldo Carvalho de Melo) Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/lib/api/Build')
-rw-r--r--tools/lib/api/Build5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/lib/api/Build b/tools/lib/api/Build
index 954c644f7ad9..6e2373db5598 100644
--- a/tools/lib/api/Build
+++ b/tools/lib/api/Build
@@ -2,3 +2,8 @@ libapi-y += fd/
2libapi-y += fs/ 2libapi-y += fs/
3libapi-y += cpu.o 3libapi-y += cpu.o
4libapi-y += debug.o 4libapi-y += debug.o
5libapi-y += str_error_r.o
6
7$(OUTPUT)str_error_r.o: ../str_error_r.c FORCE
8 $(call rule_mkdir)
9 $(call if_changed_dep,cc_o_c)