diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2011-03-11 11:35:31 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2011-03-11 11:35:31 +0000 |
commit | 1285a06923d3e680c1f8a2db565f1b95e2e9af4c (patch) | |
tree | 0c90644840b42a33923a67a42a04eceeaf934fec | |
parent | 6e26fed85fcc6dfc6946d1f530c137c8a322d15f (diff) | |
download | upstream-1285a06923d3e680c1f8a2db565f1b95e2e9af4c.tar.gz upstream-1285a06923d3e680c1f8a2db565f1b95e2e9af4c.tar.bz2 upstream-1285a06923d3e680c1f8a2db565f1b95e2e9af4c.zip |
[toolchain]: fixup armeb, too
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26034 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | toolchain/Config.in | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index ef11c9cbae..75450327fe 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -197,8 +197,7 @@ config LIBC_VERSION config TARGET_SUFFIX string - default "gnueabi" if (USE_EGLIBC || USE_GLIBC) && arm - default "gnu" if (USE_EGLIBC || USE_GLIBC) && !arm - default "uclibcgnueabi" if USE_UCLIBC && arm - default "uclibc" if USE_UCLIBC && !arm - + default "gnueabi" if (USE_EGLIBC || USE_GLIBC) && (arm || armeb) + default "gnu" if (USE_EGLIBC || USE_GLIBC) && !(arm || armeb) + default "uclibcgnueabi" if USE_UCLIBC && (arm || armeb) + default "uclibc" if USE_UCLIBC && !(arm || armeb) |