public inbox for linux-kernel@vger.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

* Re: [PATCH] tools/vm: fix build failure
  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
  0 siblings, 1 reply; 3+ messages in thread
From: Naoya Horiguchi @ 2015-05-07  5:02 UTC (permalink / raw)
  To: Jiri Olsa, Arnaldo Carvalho de Melo
  Cc: Sukadev Bhattiprolu, Will Deacon, Peter Zijlstra, Ingo Molnar,
	linux-kernel@vger.kernel.org, Andrew Morton, Andi Kleen

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 1203 bytes --]

On Thu, May 07, 2015 at 04:47:55AM +0000, Horiguchi Naoya(堀口 直也) wrote:
> 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>

Ah, this was already posted in https://lkml.org/lkml/2015/3/12/964,
but not merged for some reason.
Could someone pick it, please?

Thanks,
Naoya Horiguchi

> ---
>  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
> ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

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

* Re: [PATCH] tools/vm: fix build failure
  2015-05-07  5:02 ` Naoya Horiguchi
@ 2015-05-07 15:52   ` Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 3+ messages in thread
From: Arnaldo Carvalho de Melo @ 2015-05-07 15:52 UTC (permalink / raw)
  To: Naoya Horiguchi
  Cc: Jiri Olsa, Sukadev Bhattiprolu, Will Deacon, Peter Zijlstra,
	Ingo Molnar, linux-kernel@vger.kernel.org, Andrew Morton,
	Andi Kleen

Em Thu, May 07, 2015 at 05:02:03AM +0000, Naoya Horiguchi escreveu:
> On Thu, May 07, 2015 at 04:47:55AM +0000, Horiguchi Naoya(堀口 直也) wrote:
> > 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>
> 
> Ah, this was already posted in https://lkml.org/lkml/2015/3/12/964,
> but not merged for some reason.
> Could someone pick it, please?

I'll check and pick it, thanks.

- Arnaldo
 
> Thanks,
> Naoya Horiguchi
> 
> > ---
> >  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	[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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox