diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-02-04 10:43:13 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-04 15:13:35 +0100 |
commit | 0c535e15fae24b8cd9ea6a3537168e9bc59547f1 (patch) | |
tree | 36ee2486e883924ed318826e2245c9905aa57204 | |
parent | 24badfe11024ef52ba950ac13ad239c9064e867e (diff) | |
download | buildroot-0c535e15fae24b8cd9ea6a3537168e9bc59547f1.tar.gz buildroot-0c535e15fae24b8cd9ea6a3537168e9bc59547f1.zip |
mtr: not available for avr32
The uclibc version condition is accurate but doesn't cover external
toolchains, so also exclude for avr32 too which only has 0.9.31 enabled.
Fixes:
http://autobuild.buildroot.net/results/4ee/4eec6e29d0f2a46bbbe3a748e85bd06c3601b7c1/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/mtr/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/mtr/Config.in b/package/mtr/Config.in index 842d6ca84d..7e5ad90cd0 100644 --- a/package/mtr/Config.in +++ b/package/mtr/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_MTR bool "mtr" # res_mkquery() only available in 0.9.33+ depends on !BR2_UCLIBC_VERSION_0_9_31 && !BR2_UCLIBC_VERSION_0_9_32 + depends on !BR2_avr32 help mtr combines the functionality of the 'traceroute' and 'ping' programs in a single network diagnostic tool. |