summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/opentelemetry
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-01-31 13:52:13 +0000
committerKhem Raj <raj.khem@gmail.com>2025-01-31 10:34:03 -0800
commitbd6a1bb27844cb3c839ada75a5796c611dabf14a (patch)
treec759e40c4bf189fef9a5b34ae31b698e7de9c71b /meta-oe/recipes-support/opentelemetry
parent86980f2df271c4a798efe9fc40023b2db6911f47 (diff)
downloadmeta-openembedded-bd6a1bb27844cb3c839ada75a5796c611dabf14a.tar.gz
recipes: Fix variable assignment whitespace
Recipes are much more readable with whitespace around the assignment operators. Fix various assignments in meta-openembedded recipes to show this is definitely the preferred formatting. This fixes recipes with larger numbers of issues but there are just under 100 other references left to fix. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/opentelemetry')
-rw-r--r--meta-oe/recipes-support/opentelemetry/opentelemetry-cpp_1.17.0.bb15
1 files changed, 7 insertions, 8 deletions
diff --git a/meta-oe/recipes-support/opentelemetry/opentelemetry-cpp_1.17.0.bb b/meta-oe/recipes-support/opentelemetry/opentelemetry-cpp_1.17.0.bb
index 50e6bbebab..3df48fa019 100644
--- a/meta-oe/recipes-support/opentelemetry/opentelemetry-cpp_1.17.0.bb
+++ b/meta-oe/recipes-support/opentelemetry/opentelemetry-cpp_1.17.0.bb
@@ -17,18 +17,17 @@ inherit cmake pkgconfig lib_package
17 17
18LDFLAGS:append:riscv32 = " -latomic" 18LDFLAGS:append:riscv32 = " -latomic"
19 19
20
21EXTRA_OECMAKE:append = " -DPROTOBUF_PROTOC_EXECUTABLE=${RECIPE_SYSROOT_NATIVE}${bindir}/protoc \ 20EXTRA_OECMAKE:append = " -DPROTOBUF_PROTOC_EXECUTABLE=${RECIPE_SYSROOT_NATIVE}${bindir}/protoc \
22 -DOTELCPP_VERSIONED_LIBS=ON \ 21 -DOTELCPP_VERSIONED_LIBS=ON \
23 -DBUILD_SHARED_LIBS=ON " 22 -DBUILD_SHARED_LIBS=ON "
24 23
25PACKAGECONFIG ?= "opentelemetry_install otlp_api" 24PACKAGECONFIG ?= "opentelemetry_install otlp_api"
26 25
27PACKAGECONFIG[opentelemetry_install]="-DOPENTELEMETRY_INSTALL=ON, -DOPENTELEMETRY_INSTALL=OFF" 26PACKAGECONFIG[opentelemetry_install] = "-DOPENTELEMETRY_INSTALL=ON, -DOPENTELEMETRY_INSTALL=OFF"
28PACKAGECONFIG[otlp_api]="-DWITH_OTLP_API=ON, -DWITH_OTLP_API=OFF" 27PACKAGECONFIG[otlp_api] = "-DWITH_OTLP_API=ON, -DWITH_OTLP_API=OFF"
29PACKAGECONFIG[otlp_grpc]="-DWITH_OTLP_GRPC=ON -DWITH_ABSEIL=ON, -DWITH_OTLP_GRPC=OFF, grpc grpc-native protobuf-native" 28PACKAGECONFIG[otlp_grpc] = "-DWITH_OTLP_GRPC=ON -DWITH_ABSEIL=ON, -DWITH_OTLP_GRPC=OFF, grpc grpc-native protobuf-native"
30PACKAGECONFIG[otlp_http]="-DWITH_OTLP_HTTP=ON -DWITH_ABSEIL=ON, -DWITH_OTLP_HTTP=OFF, protobuf protobuf-native curl" 29PACKAGECONFIG[otlp_http] = "-DWITH_OTLP_HTTP=ON -DWITH_ABSEIL=ON, -DWITH_OTLP_HTTP=OFF, protobuf protobuf-native curl"
31PACKAGECONFIG[otlp_prometheus]="-DWITH_PROMETHEUS=ON -DUSE_THIRDPARTY_LIBRARIES=OFF, \ 30PACKAGECONFIG[otlp_prometheus] = "-DWITH_PROMETHEUS=ON -DUSE_THIRDPARTY_LIBRARIES=OFF, \
32 -DWITH_PROMETHEUS=OFF, civetweb curl" 31 -DWITH_PROMETHEUS=OFF, civetweb curl"
33PACKAGECONFIG[benchmark]="-DWITH_BENCHMARK=ON, -DWITH_BENCHMARK=OFF" 32PACKAGECONFIG[benchmark] = "-DWITH_BENCHMARK=ON, -DWITH_BENCHMARK=OFF"
34PACKAGECONFIG[testing]="-DBUILD_TESTING=ON, -DBUILD_TESTING=OFF, gtest" 33PACKAGECONFIG[testing] = "-DBUILD_TESTING=ON, -DBUILD_TESTING=OFF, gtest"