mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
660c27faf3
commit
fffd116d9e
@@ -24,7 +24,7 @@ inherit populate_sdk_${IMAGE_PKGTYPE}
|
|||||||
|
|
||||||
SDK_DIR = "${WORKDIR}/sdk"
|
SDK_DIR = "${WORKDIR}/sdk"
|
||||||
SDK_OUTPUT = "${SDK_DIR}/image"
|
SDK_OUTPUT = "${SDK_DIR}/image"
|
||||||
SDK_DEPLOY = "${TMPDIR}/deploy/sdk"
|
SDK_DEPLOY = "${DEPLOY_DIR}/sdk"
|
||||||
|
|
||||||
B_task-populate-sdk = "${SDK_DIR}"
|
B_task-populate-sdk = "${SDK_DIR}"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user