diff options
author | Steven Noonan <steven@uplinklabs.net> | 2015-07-14 19:35:09 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-14 23:16:52 +0200 |
commit | 1bc36855ca5efbca00035d3f157b0dd51e28687d (patch) | |
tree | 721fa8c2e1722d11d6ba8e3c588d0176016afcea | |
parent | 15f2cc5f81ea4ee9e6e219426d469f50d49b98d5 (diff) | |
download | buildroot-1bc36855ca5efbca00035d3f157b0dd51e28687d.tar.gz buildroot-1bc36855ca5efbca00035d3f157b0dd51e28687d.zip |
package/perf: if numactl (libnuma) is enabled, depend on it
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
[Romain:
- fix coding style]
Reviewed-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/perf/perf.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/perf/perf.mk b/package/perf/perf.mk index dee05c3f68..9fdce95dfd 100644 --- a/package/perf/perf.mk +++ b/package/perf/perf.mk @@ -36,6 +36,10 @@ ifeq ($(BR2_PACKAGE_SLANG),y) PERF_DEPENDENCIES += slang endif +ifeq ($(BR2_PACKAGE_NUMACTL),y) +PERF_DEPENDENCIES += numactl +endif + ifeq ($(BR2_PACKAGE_ELFUTILS),y) PERF_DEPENDENCIES += elfutils else |