diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-18 15:42:50 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-18 15:42:50 +0000 |
commit | 5a5dd825d730201a607bd61c2754c30b8821168f (patch) | |
tree | b1097a908d087c3cc0b452cd40a5c8d7cc24cc9c /toolchain | |
parent | f2057583bdaa9609e3bd3c17287c1b62d7925fc7 (diff) |
toolchain/gcc: use depends on instead of depends
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/gcc/Config.in | 21 | ||||
-rw-r--r-- | toolchain/gcc/Config.in.2 | 2 |
2 files changed, 11 insertions, 12 deletions
diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index d0667e0e4..bf9c310be 100644 --- a/toolchain/gcc/Config.in +++ b/toolchain/gcc/Config.in @@ -14,37 +14,36 @@ choice bool "gcc 3.4.6" config BR2_GCC_VERSION_4_0_4 - depends !BR2_avr32 && !BR2_nios2 - depends BR2_DEPRECATED + depends on !BR2_avr32 && !BR2_nios2 + depends on BR2_DEPRECATED bool "gcc 4.0.4" config BR2_GCC_VERSION_4_1_2 - depends !BR2_nios2 - depends BR2_EXT_GCC_VERSION_4_1_2 + depends on !BR2_nios2 + depends on BR2_EXT_GCC_VERSION_4_1_2 bool "gcc 4.1.2" config BR2_GCC_VERSION_4_2_1 - depends !BR2_nios2 - depends BR2_EXT_GCC_VERSION_4_2_1 + depends on !BR2_nios2 + depends on BR2_EXT_GCC_VERSION_4_2_1 bool "gcc 4.2.1" config BR2_GCC_VERSION_4_2_3 - depends !BR2_nios2 && !BR2_avr32 + depends on !BR2_avr32 && !BR2_nios2 bool "gcc 4.2.3" config BR2_GCC_VERSION_4_2_4 - depends !BR2_nios2 && !BR2_avr32 + depends on !BR2_avr32 && !BR2_nios2 bool "gcc 4.2.4" # config BR2_GCC_VERSION_4_3 # depends !BR2_avr32 && !BR2_nios2 # select BR2_GCC_IS_SNAP # bool "gcc 4.3" - endchoice config BR2_GCC_IS_SNAP - depends !BR2_avr32 + depends on !BR2_avr32 bool default n @@ -61,7 +60,7 @@ config BR2_GCC_SUPPORTS_FINEGRAINEDMTUNE config BR2_GCC_SNAP_DATE string "GCC snapshot date" default "20070921" - depends BR2_GCC_IS_SNAP + depends on BR2_GCC_IS_SNAP help Enter snapshot date to use for gcc. Format is: YYYYMMDD diff --git a/toolchain/gcc/Config.in.2 b/toolchain/gcc/Config.in.2 index e556392c1..073e0ff2a 100644 --- a/toolchain/gcc/Config.in.2 +++ b/toolchain/gcc/Config.in.2 @@ -8,7 +8,7 @@ config BR2_PACKAGE_GCC_TARGET config BR2_EXTRA_TARGET_GCC_CONFIG_OPTIONS string "Additional target gcc options" default "" - depends BR2_PACKAGE_GCC_TARGET + depends on BR2_PACKAGE_GCC_TARGET help Any additional target gcc options you may want to include.... Including, but not limited to --disable-checking etc. |