diff options
author | David Vincent <freesilicon@gmail.com> | 2014-04-04 09:47:42 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-04 11:55:21 +0100 |
commit | 0f043e9a3fdc4b489b55e0605fee01927854205a (patch) | |
tree | 32b9d5b018b0e44753e8cf242f508c4e30103543 /meta/classes | |
parent | 3f3e249b98182fa50358ade9278e3e26454275b8 (diff) | |
download | openembedded-core-0f043e9a3fdc4b489b55e0605fee01927854205a.tar.gz openembedded-core-0f043e9a3fdc4b489b55e0605fee01927854205a.tar.bz2 openembedded-core-0f043e9a3fdc4b489b55e0605fee01927854205a.zip |
SDK default deploy directory
If the user changes the DEPLOY_DIR variable to set up a custom deploy
directory for images, packages, SDKs as explained in the documentation,
the variable SDK_DEPLOY does not take it into account and fallback to
TMPDIR as default. Therefore, SDKs were not found in the correct
location.
Signed-off-by: David Vincent <freesilicon@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/populate_sdk_base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass index 81da206571..10d04edc63 100644 --- a/meta/classes/populate_sdk_base.bbclass +++ b/meta/classes/populate_sdk_base.bbclass @@ -24,7 +24,7 @@ inherit populate_sdk_${IMAGE_PKGTYPE} SDK_DIR = "${WORKDIR}/sdk" SDK_OUTPUT = "${SDK_DIR}/image" -SDK_DEPLOY = "${TMPDIR}/deploy/sdk" +SDK_DEPLOY = "${DEPLOY_DIR}/sdk" B_task-populate-sdk = "${SDK_DIR}" |