[PATCH 1/2] arm/trusted-services: white space clean-up
Jon Mason <[email protected]>
| Newsgroups | org.yoctoproject.lists.meta-arm |
|---|---|
| Message-ID | <[email protected]> |
Seeing warnings of:
WARNING: /builds/jonmason00/meta-arm/work/build/../../meta-arm/recipes-security/trusted-services/libpsats_git.bb: /builds/jonmason00/meta-arm/work/build/../../meta-arm/recipes-security/trusted-services/libpsats_git.bb:8 has a lack of whitespace around the assignment: 'OECMAKE_SOURCEPATH="${S}/deployments/libpsats/${TS_ENV}"'
WARNING: /builds/jonmason00/meta-arm/work/build/../../meta-arm/recipes-security/trusted-services/ts-sp-logging_git.bb: /builds/jonmason00/meta-arm/work/build/../../meta-arm/recipes-security/trusted-services/ts-sp-logging_git.bb:8 has a lack of whitespace around the assignment: 'OECMAKE_SOURCEPATH="${S}/deployments/logging/config/${TS_SP_LOGGING_CONFIG}-${TS_ENV}"'
Clean-up the white space to address the issue.
Signed-off-by: Jon Mason <[email protected]>
---
meta-arm/recipes-security/trusted-services/libpsats_git.bb | 4 ++--
.../recipes-security/trusted-services/ts-sp-logging_git.bb | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/meta-arm/recipes-security/trusted-services/libpsats_git.bb b/meta-arm/recipes-security/trusted-services/libpsats_git.bb
index 06799e61bc9c..952203f00aaf 100644
--- a/meta-arm/recipes-security/trusted-services/libpsats_git.bb
+++ b/meta-arm/recipes-security/trusted-services/libpsats_git.bb
@@ -5,9 +5,9 @@ TS_ENV = "arm-linux"
require trusted-services.inc
-OECMAKE_SOURCEPATH="${S}/deployments/libpsats/${TS_ENV}"
+OECMAKE_SOURCEPATH = "${S}/deployments/libpsats/${TS_ENV}"
-DEPENDS += "libts"
+DEPENDS += "libts"
do_install:append () {
# Move the dynamic libraries into the standard place.
diff --git a/meta-arm/recipes-security/trusted-services/ts-sp-logging_git.bb b/meta-arm/recipes-security/trusted-services/ts-sp-logging_git.bb
index e40349ae219e..f1ae792e1a11 100644
--- a/meta-arm/recipes-security/trusted-services/ts-sp-logging_git.bb
+++ b/meta-arm/recipes-security/trusted-services/ts-sp-logging_git.bb
@@ -5,4 +5,4 @@ require ts-sp-common.inc
SP_UUID = "${LOGGING_SP_UUID}"
TS_SP_LOGGING_CONFIG ?= "default"
-OECMAKE_SOURCEPATH="${S}/deployments/logging/config/${TS_SP_LOGGING_CONFIG}-${TS_ENV}"
+OECMAKE_SOURCEPATH = "${S}/deployments/logging/config/${TS_SP_LOGGING_CONFIG}-${TS_ENV}"
--
2.39.5 (Apple Git-154)