toolchain/gcc: use depends on instead of depends
authorPeter Korsgaard <jacmet@sunsite.dk>
Wed, 18 Jun 2008 15:42:50 +0000 (15:42 -0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Wed, 18 Jun 2008 15:42:50 +0000 (15:42 -0000)
toolchain/gcc/Config.in
toolchain/gcc/Config.in.2

index d0667e0e4a7c7ea888f29b2695d92bd892696179..bf9c310be62fc8231106d24e2284665ddfe66bcd 100644 (file)
@@ -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
index e556392c13ac58b7a8c62f9e3f3291377397c16b..073e0ff2a21fcdd378b4f276ee7890fbd230d489 100644 (file)
@@ -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.