summaryrefslogtreecommitdiffstats
path: root/meta/classes/cross.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-25 13:19:16 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-26 10:44:27 +0000
commit1cec0f3bf4fa784e91ee4cdb66376361ecbff18e (patch)
tree8df9415618977f726e28f9bb2c63e193342399e6 /meta/classes/cross.bbclass
parentbb5fe4c35dcc8df0acd29c6d7f43de82d5744b75 (diff)
downloadpoky-1cec0f3bf4fa784e91ee4cdb66376361ecbff18e.tar.gz
cross: Update MULTIMACH_TARGET_SYS to reflect modern recipes
Mixing PACKAGE_ARCH with BUILD_* has always seemed somewhat odd. This comes into play when building different SDKMACHINES as the PN space for the recipes did once overlap. With the modern build process we use, this overlap is a thing of the past since PN has SDK_SYS appended to it. cross.bbclass sets PACKAGE_ARCH == BUILD_ARCH so this change only affects crosssdk.bbclass where PACKAGE_ARCH == SDK_ARCH. The current structure is quite confusing and this removes this artefact of history, allowing other gcc cleanups rather than meaning we futher complicate the code. (From OE-Core rev: 525bbfd08dacba84c92da0ab34310a85369526b7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/cross.bbclass')
-rw-r--r--meta/classes/cross.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/cross.bbclass b/meta/classes/cross.bbclass
index d125f10d01..ee8e150e4c 100644
--- a/meta/classes/cross.bbclass
+++ b/meta/classes/cross.bbclass
@@ -23,7 +23,7 @@ STAGING_DIR_HOST = "${RECIPE_SYSROOT_NATIVE}"
23 23
24PACKAGE_ARCH = "${BUILD_ARCH}" 24PACKAGE_ARCH = "${BUILD_ARCH}"
25 25
26MULTIMACH_TARGET_SYS = "${PACKAGE_ARCH}${BUILD_VENDOR}-${BUILD_OS}" 26MULTIMACH_TARGET_SYS = "${BUILD_ARCH}${BUILD_VENDOR}-${BUILD_OS}"
27 27
28export PKG_CONFIG_DIR = "${exec_prefix}/lib/pkgconfig" 28export PKG_CONFIG_DIR = "${exec_prefix}/lib/pkgconfig"
29export PKG_CONFIG_SYSROOT_DIR = "" 29export PKG_CONFIG_SYSROOT_DIR = ""