summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@nxp.com>2022-02-16 12:46:36 -0600
committerTom Hochstein <tom.hochstein@nxp.com>2022-02-24 13:32:53 -0600
commitf20a803504f049d4504b480a79adf49b18c7f149 (patch)
treea3811acf32676de2295dd12aae5bd71ef78da78b
parente933d4b9df470210cbbe331c2a91394ac681b15b (diff)
downloadmeta-freescale-f20a803504f049d4504b480a79adf49b18c7f149.tar.gz
optee-os: Use variable for includedir install
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
-rw-r--r--recipes-security/optee-imx/optee-os_3.15.0.imx.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-security/optee-imx/optee-os_3.15.0.imx.bb b/recipes-security/optee-imx/optee-os_3.15.0.imx.bb
index bdc00bc3..e3b8eff4 100644
--- a/recipes-security/optee-imx/optee-os_3.15.0.imx.bb
+++ b/recipes-security/optee-imx/optee-os_3.15.0.imx.bb
@@ -77,10 +77,10 @@ do_install () {
77 install -m 644 ${B}/core/*.bin ${D}${nonarch_base_libdir}/firmware/ 77 install -m 644 ${B}/core/*.bin ${D}${nonarch_base_libdir}/firmware/
78 78
79 # Install the TA devkit 79 # Install the TA devkit
80 install -d ${D}/usr/include/optee/export-user_ta_${OPTEE_ARCH}/ 80 install -d ${D}${includedir}/optee/export-user_ta_${OPTEE_ARCH}/
81 81
82 for f in ${B}/export-ta_${OPTEE_ARCH}/*; do 82 for f in ${B}/export-ta_${OPTEE_ARCH}/*; do
83 cp -aR $f ${D}/usr/include/optee/export-user_ta_${OPTEE_ARCH}/ 83 cp -aR $f ${D}${includedir}/optee/export-user_ta_${OPTEE_ARCH}/
84 done 84 done
85} 85}
86 86