diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2015-08-12 17:00:23 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-16 17:28:14 +0100 |
commit | 059db140885bad379534e6ec713f3ceb4e18faea (patch) | |
tree | 1119279bd97f06ff97cbfbd4fd5f22160c771e61 /meta/recipes-devtools | |
parent | 24fde4d983cc8f056177de6c1ad308369f6279ad (diff) | |
download | openembedded-core-059db140885bad379534e6ec713f3ceb4e18faea.tar.gz openembedded-core-059db140885bad379534e6ec713f3ceb4e18faea.tar.bz2 openembedded-core-059db140885bad379534e6ec713f3ceb4e18faea.zip |
adt-installer: use DEPLOY_DIR in ANT_DEPLOY expansion
Currently adt-installer uses "${TMPDIR}/deploy/sdk/" as a deployment dir.
This doesn't interact well with DEPLOY_DIR reassignment. So let's use
"${DEPLOY_DIR}/sdk/" instead.
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/installer/adt-installer_1.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/installer/adt-installer_1.0.bb b/meta/recipes-devtools/installer/adt-installer_1.0.bb index c871e427c4..346fd9e4e0 100644 --- a/meta/recipes-devtools/installer/adt-installer_1.0.bb +++ b/meta/recipes-devtools/installer/adt-installer_1.0.bb @@ -33,7 +33,7 @@ INHIBIT_DEFAULT_DEPS = "1" PR = "r11" -ADT_DEPLOY = "${TMPDIR}/deploy/sdk/" +ADT_DEPLOY = "${DEPLOY_DIR}/sdk/" ADT_DIR = "${WORKDIR}/adt-installer/" S = "${WORKDIR}/opkg-${PV}" |