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 | 2884ed0e63e47daeb3236990e3e2b771d740ddeb (patch) | |
tree | 50ea61e8c1221495c2daafba92fe9d6ae25e189d /toolchain/gcc | |
parent | 2b79a8b83d7a9a18c50915fc244db2a52f6c1474 (diff) | |
download | upstream-2884ed0e63e47daeb3236990e3e2b771d740ddeb.tar.gz upstream-2884ed0e63e47daeb3236990e3e2b771d740ddeb.tar.bz2 upstream-2884ed0e63e47daeb3236990e3e2b771d740ddeb.zip |
[toolchain] gcc: fix version selection for Magicbox
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10345 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/gcc')
-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 |