summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-crypto/fsverity-utils
diff options
context:
space:
mode:
authorNiko Mauno <niko.mauno@vaisala.com>2023-01-24 12:08:13 +0000
committerKhem Raj <raj.khem@gmail.com>2023-01-25 08:51:25 -0800
commit6a87f2ba9cdd4b9689b0d1c86b2e99071d1e069b (patch)
tree0fdd03919bc40460c490c73aa0f416561347f878 /meta-oe/recipes-crypto/fsverity-utils
parent61598be67d1da6e74bd8e98c467a2b6edeb61739 (diff)
downloadmeta-openembedded-6a87f2ba9cdd4b9689b0d1c86b2e99071d1e069b.tar.gz
Fix missing leading whitespace with ':append'
Mitigate occurences where ':append' operator is used and leading whitespace character is obviously missing, risking inadvertent string concatenation. Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-crypto/fsverity-utils')
-rw-r--r--meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.5.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.5.bb b/meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.5.bb
index c95a5b2d3..1c2c6e21e 100644
--- a/meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.5.bb
+++ b/meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.5.bb
@@ -16,7 +16,7 @@ S = "${WORKDIR}/git"
16 16
17DEPENDS = "openssl" 17DEPENDS = "openssl"
18 18
19EXTRA_OEMAKE:append = "PREFIX=${prefix} LIBDIR=${libdir} USE_SHARED_LIB=1" 19EXTRA_OEMAKE:append = " PREFIX=${prefix} LIBDIR=${libdir} USE_SHARED_LIB=1"
20# We want to statically link the binary to libfsverity on native Windows 20# We want to statically link the binary to libfsverity on native Windows
21EXTRA_OEMAKE:remove:mingw32:class-nativesdk = "USE_SHARED_LIB=1" 21EXTRA_OEMAKE:remove:mingw32:class-nativesdk = "USE_SHARED_LIB=1"
22EXTRA_OEMAKE:remove:mingw32:class-native = "USE_SHARED_LIB=1" 22EXTRA_OEMAKE:remove:mingw32:class-native = "USE_SHARED_LIB=1"