diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-19 19:06:25 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-19 19:06:25 +0000 |
commit | a5ac61715b70ef628e1239e92ffd7aae859e8294 (patch) | |
tree | 15728d9cc383c794196d671ad8262fc1d364e7e8 /toolchain/binutils/Config.in | |
parent | 9991e8c7fbd18bf12af66b7cf040d2d7de3ed6c0 (diff) | |
download | buildroot-novena-a5ac61715b70ef628e1239e92ffd7aae859e8294.tar.gz buildroot-novena-a5ac61715b70ef628e1239e92ffd7aae859e8294.zip |
buildroot: s/depends/depends on/
The new kconfig is more strict regarding depends/depends on, so fixup
the tree.
Diffstat (limited to 'toolchain/binutils/Config.in')
-rw-r--r-- | toolchain/binutils/Config.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/toolchain/binutils/Config.in b/toolchain/binutils/Config.in index c44bb449b..8661bd777 100644 --- a/toolchain/binutils/Config.in +++ b/toolchain/binutils/Config.in @@ -9,20 +9,20 @@ choice Select the version of binutils you wish to use. config BR2_BINUTILS_VERSION_2_17 - depends BR2_avr32 || !BR2_nios2 && BR2_DEPRECATED - depends BR2_EXT_BINUTILS_VERSION_2_17 + depends on BR2_avr32 || !BR2_nios2 && BR2_DEPRECATED + depends on BR2_EXT_BINUTILS_VERSION_2_17 bool "binutils 2.17" config BR2_BINUTILS_VERSION_2_17_50_0_17 - depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED + depends on !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED bool "binutils 2.17.50.0.17" config BR2_BINUTILS_VERSION_2_18 - depends !BR2_avr32 && !BR2_nios2 + depends on !BR2_avr32 && !BR2_nios2 bool "binutils 2.18" config BR2_BINUTILS_VERSION_2_18_50_0_1 - depends !BR2_avr32 && !BR2_nios2 + depends on !BR2_avr32 && !BR2_nios2 bool "binutils 2.18.50.0.1" endchoice |