From 365e9110b9ee938259c306e66a07cac4e2ddc3c0 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 22 May 2024 13:25:43 -0700 Subject: recipes: Switch WORKDIR use with UNPACKDIR This is being enforced in master oe-core Signed-off-by: Khem Raj --- recipes-bsp/imx-test/imx-test_git.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'recipes-bsp/imx-test') diff --git a/recipes-bsp/imx-test/imx-test_git.bb b/recipes-bsp/imx-test/imx-test_git.bb index 930cdf949..ae3dc4692 100644 --- a/recipes-bsp/imx-test/imx-test_git.bb +++ b/recipes-bsp/imx-test/imx-test_git.bb @@ -73,11 +73,11 @@ do_install() { PLATFORM=${PLATFORM} \ install - if [ -e ${WORKDIR}/clocks.sh ]; then - install -m 755 ${WORKDIR}/clocks.sh ${D}/unit_tests/clocks.sh + if [ -e ${UNPACKDIR}/clocks.sh ]; then + install -m 755 ${UNPACKDIR}/clocks.sh ${D}/unit_tests/clocks.sh fi install -d -m 0755 ${D}${ROOT_HOME}/ - install -m 0644 ${WORKDIR}/memtool_profile ${D}${ROOT_HOME}/.profile + install -m 0644 ${UNPACKDIR}/memtool_profile ${D}${ROOT_HOME}/.profile } FILES:${PN} += "/unit_tests ${ROOT_HOME}/.profile" -- cgit v1.2.3-54-g00ecf