[PATCH 4/5] arm/trusted-services: use UNPACKDIR instead of WORKDIR/sources/
Ross Burton <[email protected]>
| Newsgroups | org.yoctoproject.lists.meta-arm |
|---|---|
| Message-ID | <[email protected]> |
Use UNPACKDIR directly instead of constructing it manually from WORKDIR. Signed-off-by: Ross Burton <[email protected]> --- .../trusted-services/trusted-services-src.inc | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) 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 \ " -- 2.43.0