diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-01-31 13:52:13 +0000 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-01-31 10:34:03 -0800 |
| commit | bd6a1bb27844cb3c839ada75a5796c611dabf14a (patch) | |
| tree | c759e40c4bf189fef9a5b34ae31b698e7de9c71b /meta-oe/recipes-support/opentelemetry | |
| parent | 86980f2df271c4a798efe9fc40023b2db6911f47 (diff) | |
| download | meta-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.bb | 15 |
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 | ||
| 18 | LDFLAGS:append:riscv32 = " -latomic" | 18 | LDFLAGS:append:riscv32 = " -latomic" |
| 19 | 19 | ||
| 20 | |||
| 21 | EXTRA_OECMAKE:append = " -DPROTOBUF_PROTOC_EXECUTABLE=${RECIPE_SYSROOT_NATIVE}${bindir}/protoc \ | 20 | EXTRA_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 | ||
| 25 | PACKAGECONFIG ?= "opentelemetry_install otlp_api" | 24 | PACKAGECONFIG ?= "opentelemetry_install otlp_api" |
| 26 | 25 | ||
| 27 | PACKAGECONFIG[opentelemetry_install]="-DOPENTELEMETRY_INSTALL=ON, -DOPENTELEMETRY_INSTALL=OFF" | 26 | PACKAGECONFIG[opentelemetry_install] = "-DOPENTELEMETRY_INSTALL=ON, -DOPENTELEMETRY_INSTALL=OFF" |
| 28 | PACKAGECONFIG[otlp_api]="-DWITH_OTLP_API=ON, -DWITH_OTLP_API=OFF" | 27 | PACKAGECONFIG[otlp_api] = "-DWITH_OTLP_API=ON, -DWITH_OTLP_API=OFF" |
| 29 | PACKAGECONFIG[otlp_grpc]="-DWITH_OTLP_GRPC=ON -DWITH_ABSEIL=ON, -DWITH_OTLP_GRPC=OFF, grpc grpc-native protobuf-native" | 28 | PACKAGECONFIG[otlp_grpc] = "-DWITH_OTLP_GRPC=ON -DWITH_ABSEIL=ON, -DWITH_OTLP_GRPC=OFF, grpc grpc-native protobuf-native" |
| 30 | PACKAGECONFIG[otlp_http]="-DWITH_OTLP_HTTP=ON -DWITH_ABSEIL=ON, -DWITH_OTLP_HTTP=OFF, protobuf protobuf-native curl" | 29 | PACKAGECONFIG[otlp_http] = "-DWITH_OTLP_HTTP=ON -DWITH_ABSEIL=ON, -DWITH_OTLP_HTTP=OFF, protobuf protobuf-native curl" |
| 31 | PACKAGECONFIG[otlp_prometheus]="-DWITH_PROMETHEUS=ON -DUSE_THIRDPARTY_LIBRARIES=OFF, \ | 30 | PACKAGECONFIG[otlp_prometheus] = "-DWITH_PROMETHEUS=ON -DUSE_THIRDPARTY_LIBRARIES=OFF, \ |
| 32 | -DWITH_PROMETHEUS=OFF, civetweb curl" | 31 | -DWITH_PROMETHEUS=OFF, civetweb curl" |
| 33 | PACKAGECONFIG[benchmark]="-DWITH_BENCHMARK=ON, -DWITH_BENCHMARK=OFF" | 32 | PACKAGECONFIG[benchmark] = "-DWITH_BENCHMARK=ON, -DWITH_BENCHMARK=OFF" |
| 34 | PACKAGECONFIG[testing]="-DBUILD_TESTING=ON, -DBUILD_TESTING=OFF, gtest" | 33 | PACKAGECONFIG[testing] = "-DBUILD_TESTING=ON, -DBUILD_TESTING=OFF, gtest" |
