projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
436b0da
)
perf tools: Correct the message in feature-libnuma checking.
author
Dongsheng Yang
<
[email protected]
>
Mon, 2 Dec 2013 15:26:48 +0000
(10:26 -0500)
committer
Arnaldo Carvalho de Melo
<
[email protected]
>
Mon, 2 Dec 2013 12:26:39 +0000
(09:26 -0300)
The package required for numa is named numactl-devel in Fedora or RHEL,
and libnuma-devel in OpenSuSE, and libnuma-dev in Ubuntu.
This patch corrects the package name in warning message in
feature-libnuma checking.
Signed-off-by: Dongsheng Yang <
[email protected]
>
Acked-by: Peter Hurley <
[email protected]
>
Cc: Peter Hurley <
[email protected]
>
Link:
http://lkml.kernel.org/r/
[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <
[email protected]
>
tools/perf/config/Makefile
patch
|
blob
|
history
diff --git
a/tools/perf/config/Makefile
b/tools/perf/config/Makefile
index f7d11a811c743e6e2836270f4579124007140d32..36e66ac40abc89bad1b94e9e327e8bedc3a3cf41 100644
(file)
--- a/
tools/perf/config/Makefile
+++ b/
tools/perf/config/Makefile
@@
-533,7
+533,7
@@
endif
ifndef NO_LIBNUMA
ifeq ($(feature-libnuma), 0)
- msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa
-libs-devel or
libnuma-dev);
+ msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa
ctl-devel/libnuma-devel/
libnuma-dev);
NO_LIBNUMA := 1
else
CFLAGS += -DHAVE_LIBNUMA_SUPPORT