Message ID | 20250411093100.3753172-1-richard.purdie@linuxfoundation.org |
---|---|
State | New |
Headers | show |
Series | classes/tfm_sign_image: Fix assignment whitespace | expand |
On Fri, 11 Apr 2025 10:31:00 +0100, Richard Purdie wrote: > Fix whitespace to avoid a warning with newer bitbake. > > Applied, thanks! [1/1] classes/tfm_sign_image: Fix assignment whitespace commit: ca97d0fcec4f75cfbb1287041235c5c7be1c9b98 Best regards,
diff --git a/meta-arm/classes/tfm_sign_image.bbclass b/meta-arm/classes/tfm_sign_image.bbclass index 24df7682..44ef3318 100644 --- a/meta-arm/classes/tfm_sign_image.bbclass +++ b/meta-arm/classes/tfm_sign_image.bbclass @@ -33,7 +33,7 @@ DEPENDS += "trusted-firmware-m-scripts-native" # python3-cryptography needs the legacy provider, so set OPENSSL_MODULES to the # right path until this is relocated automatically. -export OPENSSL_MODULES="${STAGING_LIBDIR_NATIVE}/ossl-modules" +export OPENSSL_MODULES = "${STAGING_LIBDIR_NATIVE}/ossl-modules" # The arguments passed to the TF-M image signing script. Override this variable # in an image recipe to customize the arguments.
Fix whitespace to avoid a warning with newer bitbake. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> --- meta-arm/classes/tfm_sign_image.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)