diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-01-31 12:03:05 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-01 13:42:34 +0000 |
| commit | c2da016918d1fda5bf63d94b59863f5013e482f9 (patch) | |
| tree | 7f1c5dd99c56a405c1ebd86f497461b5c4214752 /meta/classes-recipe/rust.bbclass | |
| parent | c690181cd112ac6eac18c358b970f0ca0c73cd5f (diff) | |
| download | poky-c2da016918d1fda5bf63d94b59863f5013e482f9.tar.gz | |
meta/meta-selftest: Fix variable assignment whitespace
Recipes are much more readable with whitespace around the assignment operators.
Fix various assignments in OE-Core to show this is definitely the preferred
formatting.
(From OE-Core rev: 30ea609d3357fb3de911f2f6a5e6856c151b976a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/rust.bbclass')
| -rw-r--r-- | meta/classes-recipe/rust.bbclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes-recipe/rust.bbclass b/meta/classes-recipe/rust.bbclass index dae25cac2a..e727601679 100644 --- a/meta/classes-recipe/rust.bbclass +++ b/meta/classes-recipe/rust.bbclass | |||
| @@ -43,9 +43,9 @@ HOST_CFLAGS ?= "${CFLAGS}" | |||
| 43 | HOST_CXXFLAGS ?= "${CXXFLAGS}" | 43 | HOST_CXXFLAGS ?= "${CXXFLAGS}" |
| 44 | HOST_CPPFLAGS ?= "${CPPFLAGS}" | 44 | HOST_CPPFLAGS ?= "${CPPFLAGS}" |
| 45 | 45 | ||
| 46 | rustlib_suffix="${TUNE_ARCH}${TARGET_VENDOR}-${TARGET_OS}/rustlib/${RUST_HOST_SYS}/lib" | 46 | rustlib_suffix = "${TUNE_ARCH}${TARGET_VENDOR}-${TARGET_OS}/rustlib/${RUST_HOST_SYS}/lib" |
| 47 | # Native sysroot standard library path | 47 | # Native sysroot standard library path |
| 48 | rustlib_src="${prefix}/lib/${rustlib_suffix}" | 48 | rustlib_src = "${prefix}/lib/${rustlib_suffix}" |
| 49 | # Host sysroot standard library path | 49 | # Host sysroot standard library path |
| 50 | rustlib="${libdir}/${rustlib_suffix}" | 50 | rustlib = "${libdir}/${rustlib_suffix}" |
| 51 | rustlib:class-native="${libdir}/rustlib/${BUILD_SYS}/lib" | 51 | rustlib:class-native = "${libdir}/rustlib/${BUILD_SYS}/lib" |
