diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2015-02-04 01:34:09 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-02-07 21:14:15 +0100 |
commit | bacdf4c8e9fc4003cfab052c5cab3e498c3ed85f (patch) | |
tree | ad47c496d35aa28a6d5612ac0a4b8c08cce6005f | |
parent | 2ca1d299ae2d1b852088e266451a61977852ac15 (diff) | |
download | buildroot-bacdf4c8e9fc4003cfab052c5cab3e498c3ed85f.tar.gz buildroot-bacdf4c8e9fc4003cfab052c5cab3e498c3ed85f.zip |
oprofile: add missing indirect dependency on NPTL for PPC
[Peter: also adjust comment dependencies]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/oprofile/Config.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/oprofile/Config.in b/package/oprofile/Config.in index 3ea07d90f6..9cf569383b 100644 --- a/package/oprofile/Config.in +++ b/package/oprofile/Config.in @@ -9,7 +9,7 @@ config BR2_PACKAGE_OPROFILE depends on BR2_USE_WCHAR # binutils depends on !BR2_xtensa # libpfm4 is needed on PowerPC, and requires thread support - depends on BR2_TOOLCHAIN_HAS_THREADS || !BR2_powerpc + depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_powerpc help OProfile is a system-wide profiler for Linux systems, capable of profiling all running code at low overhead. @@ -31,6 +31,6 @@ comment "oprofile needs a toolchain w/ C++, wchar" depends on !BR2_aarch64 && !BR2_nios2 && !BR2_xtensa depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR -comment "oprofile needs a toolchain w/ threads on PPC" +comment "oprofile needs a toolchain w/ NPTL on PPC" depends on BR2_USE_MMU && BR2_powerpc - depends on !BR2_TOOLCHAIN_HAS_THREADS + depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL |