From: Joshua Lock Date: Fri, 19 Nov 2010 11:59:01 +0000 (+0000) Subject: poky.conf: move the SDK install into version directories X-Git-Tag: 2011-1~3558 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=47efcfdf79bb859047611c4b17e7ff744bfb4fe5;p=openembedded-core.git poky.conf: move the SDK install into version directories It's desirable to be able to have SDK toolchains installed from multiple versions of Poky, enable this by installing the toolchains into a subdirectory of /opt/poky/ based on the distro version. Signed-off-by: Joshua Lock --- diff --git a/meta/conf/distro/poky.conf b/meta/conf/distro/poky.conf index 6fce4b9030..10b31653da 100644 --- a/meta/conf/distro/poky.conf +++ b/meta/conf/distro/poky.conf @@ -60,7 +60,7 @@ POKYLIBC ?= "eglibc" require conf/distro/include/poky-${POKYLIBC}.inc SDK_NAME = "${DISTRO}-${POKYLIBC}-${SDK_ARCH}-${TARGET_ARCH}" -SDKPATH = "/opt/${DISTRO}" +SDKPATH = "/opt/${DISTRO}/${DISTRO_VERSION}" CACHE = "${TMPDIR}/cache/${POKYMODE}-${POKYLIBC}${@['', '/' + str(bb.data.getVar('MACHINE', d, 1))][bool(bb.data.getVar('MACHINE', d, 1))]}${@['', '/' + str(bb.data.getVar('SDKMACHINE', d, 1))][bool(bb.data.getVar('SDKMACHINE', d, 1))]}"