[oe-commits] Koen Kooi : angstrom-eglibc: fix eabi target os assignment

git version control git at git.openembedded.org
Thu Sep 17 21:50:56 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 5a790b1f8eaf649d9000f8834967870de5129286
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=5a790b1f8eaf649d9000f8834967870de5129286

Author: Koen Kooi <koen at openembedded.org>
Date:   Thu Sep 17 23:48:55 2009 +0200

angstrom-eglibc: fix eabi target os assignment

---

 conf/distro/include/angstrom-eglibc.inc |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/conf/distro/include/angstrom-eglibc.inc b/conf/distro/include/angstrom-eglibc.inc
index e947833..2a1b7b0 100644
--- a/conf/distro/include/angstrom-eglibc.inc
+++ b/conf/distro/include/angstrom-eglibc.inc
@@ -1,9 +1,10 @@
 # eglibc:
 require conf/distro/include/eglibc.inc
 
-TARGET_OS = "linux${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1) in ['arm', 'armeb'] and bb.data.getVar('MACHINE',d) not in ['collie','h3600', 'h3800', 'simpad', 'htcwallaby']]}"
+TARGET_OS = "linux"
 
-TARGET_OS = "linux${@['','-gnuspe'][bb.data.getVar('TARGET_ARCH',d,1) in ['ppc', 'powerpc'] and bb.data.getVar('MACHINE',d) in ['calamari']]}"
+TARGET_OS .= "${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1) in ['arm', 'armeb'] and bb.data.getVar('MACHINE',d) not in ['collie','h3600', 'h3800', 'simpad', 'htcwallaby']]}"
+TARGET_OS .= "${@['','-gnuspe'][bb.data.getVar('TARGET_ARCH',d,1) in ['ppc', 'powerpc'] and bb.data.getVar('MACHINE',d) in ['calamari']]}"
 
 #TARGET_OS = "linux-gnuspe"
 





More information about the Openembedded-commits mailing list