From: Steven Noonan Date: Tue, 14 Jul 2015 17:35:10 +0000 (+0200) Subject: package/perf: if libunwind is enabled, depend on it X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=71e5ff61eeab0ba7cdeb2eae9fa566110d7ed212;p=buildroot.git package/perf: if libunwind is enabled, depend on it Signed-off-by: Steven Noonan [Romain: - fix coding style] Reviewed-by: Romain Naour Signed-off-by: Thomas Petazzoni --- diff --git a/package/perf/perf.mk b/package/perf/perf.mk index 9fdce95dfd..42fbe249cd 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_LIBUNWIND),y) +PERF_DEPENDENCIES += libunwind +endif + ifeq ($(BR2_PACKAGE_NUMACTL),y) PERF_DEPENDENCIES += numactl endif