All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tools/vm: fix build failure
@ 2015-05-07  4:47 Naoya Horiguchi
  2015-05-07  5:02 ` Naoya Horiguchi
  0 siblings, 1 reply; 3+ messages in thread
From: Naoya Horiguchi @ 2015-05-07  4:47 UTC (permalink / raw)
  To: Jiri Olsa, Arnaldo Carvalho de Melo
  Cc: Sukadev Bhattiprolu, Will Deacon, Peter Zijlstra, Ingo Molnar,
	linux-kernel@vger.kernel.org

libapikfs.a was renamed to libapi.a on commit 285a8f247b08 ("tools lib api:
Rename libapikfs.a to libapi.a"), but tools/vm/Makefile still refers to the
old file name, which breaks the build on tools/vm. This patch fixes it.

Signed-off-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
---
 tools/vm/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git v4.1-rc2.orig/tools/vm/Makefile v4.1-rc2/tools/vm/Makefile
index ac884b65a072..93aadaf7ff63 100644
--- v4.1-rc2.orig/tools/vm/Makefile
+++ v4.1-rc2/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/
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-05-07 15:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-07  4:47 [PATCH] tools/vm: fix build failure Naoya Horiguchi
2015-05-07  5:02 ` Naoya Horiguchi
2015-05-07 15:52   ` Arnaldo Carvalho de Melo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.