linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [perf]: update makefile message for installing required libs
@ 2016-06-27  4:49 neerajbadlani
  2016-06-27  6:26 ` Peter Zijlstra
  0 siblings, 1 reply; 6+ messages in thread
From: neerajbadlani @ 2016-06-27  4:49 UTC (permalink / raw)
  To: peterz; +Cc: mingo, linux-kernel, Neeraj Badlani

From: Neeraj Badlani <neerajbadlani@gmail.com>

In case of missing library (libslang), give hint to install library (libslang2-dev)
Since libslang-dev is not provided by Ubuntu's apt-package
---
 tools/perf/config/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile
index 5ad0255..e57d4d7 100644
--- a/tools/perf/config/Makefile
+++ b/tools/perf/config/Makefile
@@ -437,7 +437,7 @@ endif
 
 ifndef NO_SLANG
   ifneq ($(feature-libslang), 1)
-    msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
+    msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev or libslang2-dev);
     NO_SLANG := 1
   else
     # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
-- 
2.7.4

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

* Re: [PATCH] [perf]: update makefile message for installing required libs
  2016-06-27  4:49 [PATCH] [perf]: update makefile message for installing required libs neerajbadlani
@ 2016-06-27  6:26 ` Peter Zijlstra
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Zijlstra @ 2016-06-27  6:26 UTC (permalink / raw)
  To: neerajbadlani; +Cc: mingo, linux-kernel, Arnaldo Carvalho de Melo

On Sun, Jun 26, 2016 at 09:49:56PM -0700, neerajbadlani@gmail.com wrote:
> From: Neeraj Badlani <neerajbadlani@gmail.com>
> 
> In case of missing library (libslang), give hint to install library (libslang2-dev)
> Since libslang-dev is not provided by Ubuntu's apt-package

No Signed-off-by:, so I (or in reality acme) cannot actually do anything
with this patch.

Please see Documentation/SubmittingPatches.

> ---
>  tools/perf/config/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile
> index 5ad0255..e57d4d7 100644
> --- a/tools/perf/config/Makefile
> +++ b/tools/perf/config/Makefile
> @@ -437,7 +437,7 @@ endif
>  
>  ifndef NO_SLANG
>    ifneq ($(feature-libslang), 1)
> -    msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
> +    msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev or libslang2-dev);
>      NO_SLANG := 1
>    else
>      # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
> -- 
> 2.7.4
> 

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

* Re: [PATCH] [perf]: update makefile message for installing required libs
  2016-06-27 13:59 neerajbadlani
@ 2016-06-27 15:34 ` Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 6+ messages in thread
From: Arnaldo Carvalho de Melo @ 2016-06-27 15:34 UTC (permalink / raw)
  To: neerajbadlani; +Cc: linux-kernel

Em Mon, Jun 27, 2016 at 06:59:57AM -0700, neerajbadlani@gmail.com escreveu:
> From: Neeraj Badlani <neerajbadlani@gmail.com>
> 
> In case of missing library (libslang), give hint to install library (libslang2-dev)
> Since libslang-dev is not provided by Ubuntu's apt-package
> 
> Signed-off-by: Neeraj Badlani <neerajbadlani@gmail.com>
> ---
>  tools/perf/config/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile
> index 5ad0255..e57d4d7 100644
> --- a/tools/perf/config/Makefile
> +++ b/tools/perf/config/Makefile
> @@ -437,7 +437,7 @@ endif
>  
>  ifndef NO_SLANG
>    ifneq ($(feature-libslang), 1)
> -    msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
> +    msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev or libslang2-dev);

Too many 'or', I'll apply it as:

+    msg := $(warning slang not found, disables TUI support. Please install slang-devel, libslang-dev or libslang2-dev);

Thanks,

- Arnaldo

>      NO_SLANG := 1
>    else
>      # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
> -- 
> 2.7.4

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

* [PATCH] [perf]: update makefile message for installing required libs
@ 2016-06-27 13:59 neerajbadlani
  2016-06-27 15:34 ` Arnaldo Carvalho de Melo
  0 siblings, 1 reply; 6+ messages in thread
From: neerajbadlani @ 2016-06-27 13:59 UTC (permalink / raw)
  To: acme; +Cc: Neeraj Badlani, linux-kernel

From: Neeraj Badlani <neerajbadlani@gmail.com>

In case of missing library (libslang), give hint to install library (libslang2-dev)
Since libslang-dev is not provided by Ubuntu's apt-package

Signed-off-by: Neeraj Badlani <neerajbadlani@gmail.com>
---
 tools/perf/config/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile
index 5ad0255..e57d4d7 100644
--- a/tools/perf/config/Makefile
+++ b/tools/perf/config/Makefile
@@ -437,7 +437,7 @@ endif
 
 ifndef NO_SLANG
   ifneq ($(feature-libslang), 1)
-    msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
+    msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev or libslang2-dev);
     NO_SLANG := 1
   else
     # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
-- 
2.7.4

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

* Re: [PATCH] [perf]: update makefile message for installing required libs
  2016-06-27  7:10 neerajbadlani
@ 2016-06-27  8:11 ` Peter Zijlstra
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Zijlstra @ 2016-06-27  8:11 UTC (permalink / raw)
  To: neerajbadlani; +Cc: linux-kernel, Arnaldo Carvalho de Melo, Ingo Molnar

On Mon, Jun 27, 2016 at 12:10:52AM -0700, neerajbadlani@gmail.com wrote:
> From: Neeraj Badlani <neerajbadlani@gmail.com>
> 
> In case of missing library (libslang), give hint to install library (libslang2-dev)
> Since libslang-dev is not provided by Ubuntu's apt-package
> 
> Signed-off-by: Neeraj Badlani <neerajbadlani@gmail.com>
> ---
>  tools/perf/config/Makefile | 2 +-

You're still very much not Cc'ing the right people here..

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

* [PATCH] [perf]: update makefile message for installing required libs
@ 2016-06-27  7:10 neerajbadlani
  2016-06-27  8:11 ` Peter Zijlstra
  0 siblings, 1 reply; 6+ messages in thread
From: neerajbadlani @ 2016-06-27  7:10 UTC (permalink / raw)
  To: peterz; +Cc: linux-kernel, Neeraj Badlani

From: Neeraj Badlani <neerajbadlani@gmail.com>

In case of missing library (libslang), give hint to install library (libslang2-dev)
Since libslang-dev is not provided by Ubuntu's apt-package

Signed-off-by: Neeraj Badlani <neerajbadlani@gmail.com>
---
 tools/perf/config/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile
index 5ad0255..e57d4d7 100644
--- a/tools/perf/config/Makefile
+++ b/tools/perf/config/Makefile
@@ -437,7 +437,7 @@ endif
 
 ifndef NO_SLANG
   ifneq ($(feature-libslang), 1)
-    msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
+    msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev or libslang2-dev);
     NO_SLANG := 1
   else
     # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
-- 
2.7.4

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

end of thread, other threads:[~2016-06-27 15:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-27  4:49 [PATCH] [perf]: update makefile message for installing required libs neerajbadlani
2016-06-27  6:26 ` Peter Zijlstra
2016-06-27  7:10 neerajbadlani
2016-06-27  8:11 ` Peter Zijlstra
2016-06-27 13:59 neerajbadlani
2016-06-27 15:34 ` 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;
as well as URLs for NNTP newsgroup(s).