diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2008-02-01 16:44:52 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2008-02-01 16:44:52 +0000 |
commit | f5c304120df626b3536e5cb35ef37108bde7e6e3 (patch) | |
tree | 0c7031b57e09745a76a5fe9d7b80b3a2ae9e39d7 /toolchain | |
parent | 829fa504f2ecd04619db4b4750a3d7c34b8f8b5b (diff) | |
download | upstream-f5c304120df626b3536e5cb35ef37108bde7e6e3.tar.gz upstream-f5c304120df626b3536e5cb35ef37108bde7e6e3.tar.bz2 upstream-f5c304120df626b3536e5cb35ef37108bde7e6e3.zip |
gcc: fix version selection for Magicbox
SVN-Revision: 10345
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/gcc/Config.in | 2 | ||||
-rw-r--r-- | toolchain/gcc/Config.version | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index 08dc13e0c8..36e88d6952 100644 --- a/toolchain/gcc/Config.in +++ b/toolchain/gcc/Config.in @@ -3,7 +3,7 @@ choice prompt "GCC compiler Version" if TOOLCHAINOPTS default GCC_VERSION_3_4_6 if LINUX_2_4 - default GCC_VERSION_4_2_0 if LINUX_2_6_MAGICBOX + default GCC_VERSION_4_2_0 if TARGET_magicbox default GCC_VERSION_4_1_2 help Select the version of gcc you wish to use. diff --git a/toolchain/gcc/Config.version b/toolchain/gcc/Config.version index 749dc66056..204fc273e7 100644 --- a/toolchain/gcc/Config.version +++ b/toolchain/gcc/Config.version @@ -12,7 +12,7 @@ if !TOOLCHAINOPTS default y if LINUX_2_4 config GCC_VERSION_4_2_0 - default y if @TARGET_magicbox + default y if TARGET_magicbox endif |