diff options
author | Andi Kleen <ak@linux.intel.com> | 2015-03-12 15:39:13 -0700 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-05-12 18:11:06 -0300 |
commit | 85a9fb47c56aa5e43c54034002232c0585a4b781 (patch) | |
tree | 88a78db8f8200d0b056e05c1ad9af28b7c14bb67 /tools | |
parent | 44b11fee51711ca85aa2b121a49bf029d18a3722 (diff) | |
download | op-kernel-dev-85a9fb47c56aa5e43c54034002232c0585a4b781.zip op-kernel-dev-85a9fb47c56aa5e43c54034002232c0585a4b781.tar.gz |
tools: Fix tools/vm build
libabikfs.a doesn't exist anymore, so we now need to link with libapi.a.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Link: http://lkml.kernel.org/r/1426199953-15324-1-git-send-email-andi@firstfloor.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/vm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/vm/Makefile b/tools/vm/Makefile index ac884b6..93aadaf 100644 --- a/tools/vm/Makefile +++ b/tools/vm/Makefile @@ -3,7 +3,7 @@ TARGETS=page-types slabinfo page_owner_sort LIB_DIR = ../lib/api -LIBS = $(LIB_DIR)/libapikfs.a +LIBS = $(LIB_DIR)/libapi.a CC = $(CROSS_COMPILE)gcc CFLAGS = -Wall -Wextra -I../lib/ |