]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
oprofile: add missing indirect dependency on NPTL for PPC
authorArnout Vandecappelle <arnout@mind.be>
Wed, 4 Feb 2015 00:34:09 +0000 (01:34 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Sat, 7 Feb 2015 20:14:15 +0000 (21:14 +0100)
[Peter: also adjust comment dependencies]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/oprofile/Config.in

index 3ea07d90f68e1149b1c0a08bd2e8594074e5729e..9cf569383b8039c76a3ccc7bbd5ce1d8824b5c5a 100644 (file)
@@ -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