summaryrefslogtreecommitdiffstats
path: root/meta/classes/base.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-07-19 11:59:42 +0000
committerRichard Purdie <richard@openedhand.com>2008-07-19 11:59:42 +0000
commita566074ef3d690ce21306b5f8636da7ccabb7bf9 (patch)
tree8de2a7e558f20d1cc785e824a402a397d5cf9502 /meta/classes/base.bbclass
parent7471ff92aead597d027e90bfe273606de989dea4 (diff)
downloadpoky-a566074ef3d690ce21306b5f8636da7ccabb7bf9.tar.gz
bitbake.conf: Split STAGING and CROSS to become target specific so armv5 binaries don't mix with armv6 or v7, likewise with the cross compilers themselves. Also move pkgdata our of staging since it follows a totally different directory structure to staging. These changes break ABI so change the ABI number
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4893 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r--meta/classes/base.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 60a69e24f3..3b10c985e5 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -897,7 +897,7 @@ def get_subpkgedata_fn(pkg, d):
897 import bb, os 897 import bb, os
898 archs = bb.data.expand("${PACKAGE_ARCHS}", d).split(" ") 898 archs = bb.data.expand("${PACKAGE_ARCHS}", d).split(" ")
899 archs.reverse() 899 archs.reverse()
900 pkgdata = bb.data.expand('${STAGING_DIR}/pkgdata/', d) 900 pkgdata = bb.data.expand('${TMPDIR}/pkgdata/', d)
901 targetdir = bb.data.expand('${TARGET_VENDOR}-${TARGET_OS}/runtime/', d) 901 targetdir = bb.data.expand('${TARGET_VENDOR}-${TARGET_OS}/runtime/', d)
902 for arch in archs: 902 for arch in archs:
903 fn = pkgdata + arch + targetdir + pkg 903 fn = pkgdata + arch + targetdir + pkg