summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Baryshkov <dmitry.baryshkov@linaro.org>2024-05-24 14:57:04 +0300
committerKhem Raj <raj.khem@gmail.com>2024-05-25 10:55:33 -0700
commit6dd9cd977f889e37efaa5a8871a9824e19d2bd77 (patch)
treed3e61ececbf45ae304ad09ef042500a177fc8796
parent88f604fa710f2c1cdfcceb73c2bcd33f5084cb63 (diff)
downloadmeta-openembedded-6dd9cd977f889e37efaa5a8871a9824e19d2bd77.tar.gz
android-tools: fix UNPACKDIR conversion leftovers
With the intruction of the UNPACKDIR the remount script is placed in the UNPACKDIR and not in S. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb
index 176107f2a..456c7400e 100644
--- a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb
+++ b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb
@@ -139,7 +139,7 @@ do_compile() {
139 139
140do_install() { 140do_install() {
141 install -d ${D}${base_sbindir} 141 install -d ${D}${base_sbindir}
142 install -m 0755 ${S}/../remount -D ${D}${base_sbindir}/remount 142 install -m 0755 ${UNPACKDIR}/remount -D ${D}${base_sbindir}/remount
143 143
144 for tool in img2simg simg2img fastboot adbd; do 144 for tool in img2simg simg2img fastboot adbd; do
145 if echo ${TOOLS_TO_BUILD} | grep -q "$tool" ; then 145 if echo ${TOOLS_TO_BUILD} | grep -q "$tool" ; then