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 12:18:17 +0100 |
commit | fffd116d9e4bfa4f41274bd54c7dff639ce178f6 (patch) | |
tree | 60b3cda853dae35fb18564c77d31ef3b53551bac /meta/classes/populate_sdk_base.bbclass | |
parent | 660c27faf3102904cc12d617fca2f145dd01aa0b (diff) | |
download | poky-fffd116d9e4bfa4f41274bd54c7dff639ce178f6.tar.gz |
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.
(From OE-Core rev: 0f043e9a3fdc4b489b55e0605fee01927854205a)
Signed-off-by: David Vincent <freesilicon@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/populate_sdk_base.bbclass')
-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} | |||
24 | 24 | ||
25 | SDK_DIR = "${WORKDIR}/sdk" | 25 | SDK_DIR = "${WORKDIR}/sdk" |
26 | SDK_OUTPUT = "${SDK_DIR}/image" | 26 | SDK_OUTPUT = "${SDK_DIR}/image" |
27 | SDK_DEPLOY = "${TMPDIR}/deploy/sdk" | 27 | SDK_DEPLOY = "${DEPLOY_DIR}/sdk" |
28 | 28 | ||
29 | B_task-populate-sdk = "${SDK_DIR}" | 29 | B_task-populate-sdk = "${SDK_DIR}" |
30 | 30 | ||