diff mbox series

[4/5] arm/trusted-services: use UNPACKDIR instead of WORKDIR/sources/

Message ID 20250707183042.1299783-4-ross.burton@arm.com
State New
Headers show
Series [1/5] CI: don't force testimage in fvp-base-ts | expand

Commit Message

Ross Burton July 7, 2025, 6:30 p.m. UTC
Use UNPACKDIR directly instead of constructing it manually from WORKDIR.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 .../trusted-services/trusted-services-src.inc | 24 +++++++++----------
 1 file changed, 12 insertions(+), 12 deletions(-)
diff mbox series

Patch

diff --git a/meta-arm/recipes-security/trusted-services/trusted-services-src.inc b/meta-arm/recipes-security/trusted-services/trusted-services-src.inc
index 5a7ab785c2..f557fccf6b 100644
--- a/meta-arm/recipes-security/trusted-services/trusted-services-src.inc
+++ b/meta-arm/recipes-security/trusted-services/trusted-services-src.inc
@@ -56,19 +56,19 @@  inherit apply_local_src_patches
 LOCAL_SRC_PATCHES_INPUT_DIR = "N/A"
 
 do_apply_local_src_patches() {
-    apply_local_src_patches ${S}/external/qcbor ${WORKDIR}/sources/qcbor
-    apply_local_src_patches ${S}/external/t_cose ${WORKDIR}/sources/tcose
-    apply_local_src_patches ${S}/external/MbedTLS ${WORKDIR}/sources/mbedtls
-    apply_local_src_patches ${S}/external/CppUTest ${WORKDIR}/sources/cpputest
-    apply_local_src_patches ${S}/external/libfdt ${WORKDIR}/sources/dtc
-    apply_local_src_patches ${S}/external/nanopb ${WORKDIR}/sources/nanopb
+    apply_local_src_patches ${S}/external/qcbor ${UNPACKDIR}/qcbor
+    apply_local_src_patches ${S}/external/t_cose ${UNPACKDIR}/tcose
+    apply_local_src_patches ${S}/external/MbedTLS ${UNPACKDIR}/mbedtls
+    apply_local_src_patches ${S}/external/CppUTest ${UNPACKDIR}/cpputest
+    apply_local_src_patches ${S}/external/libfdt ${UNPACKDIR}/dtc
+    apply_local_src_patches ${S}/external/nanopb ${UNPACKDIR}/nanopb
 }
 
 # Paths to dependencies required by some TS SPs/tools
-EXTRA_OECMAKE += "-DDTC_SOURCE_DIR=${WORKDIR}/sources/dtc \
-                  -DCPPUTEST_SOURCE_DIR=${WORKDIR}/sources/cpputest \
-                  -DNANOPB_SOURCE_DIR=${WORKDIR}/sources/nanopb \
-                  -DT_COSE_SOURCE_DIR=${WORKDIR}/sources/tcose \
-                  -DQCBOR_SOURCE_DIR=${WORKDIR}/sources/qcbor \
-                  -DMBEDTLS_SOURCE_DIR=${WORKDIR}/sources/mbedtls \
+EXTRA_OECMAKE += "-DDTC_SOURCE_DIR=${UNPACKDIR}/dtc \
+                  -DCPPUTEST_SOURCE_DIR=${UNPACKDIR}/cpputest \
+                  -DNANOPB_SOURCE_DIR=${UNPACKDIR}/nanopb \
+                  -DT_COSE_SOURCE_DIR=${UNPACKDIR}/tcose \
+                  -DQCBOR_SOURCE_DIR=${UNPACKDIR}/qcbor \
+                  -DMBEDTLS_SOURCE_DIR=${UNPACKDIR}/mbedtls \
                  "