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/recipes-core/glibc | |
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/recipes-core/glibc')
-rw-r--r-- | meta/recipes-core/glibc/glibc-package.inc | 2 | ||||
-rw-r--r-- | meta/recipes-core/glibc/glibc-y2038-tests_2.40.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/glibc/glibc-package.inc b/meta/recipes-core/glibc/glibc-package.inc index ad34b87929..bba9449d34 100644 --- a/meta/recipes-core/glibc/glibc-package.inc +++ b/meta/recipes-core/glibc/glibc-package.inc | |||
@@ -293,7 +293,7 @@ pkg_postinst:nscd () { | |||
293 | fi | 293 | fi |
294 | fi | 294 | fi |
295 | } | 295 | } |
296 | CONFFILES:nscd="${sysconfdir}/nscd.conf" | 296 | CONFFILES:nscd = "${sysconfdir}/nscd.conf" |
297 | 297 | ||
298 | SYSTEMD_PACKAGES = "nscd" | 298 | SYSTEMD_PACKAGES = "nscd" |
299 | SYSTEMD_SERVICE:nscd = "nscd.service" | 299 | SYSTEMD_SERVICE:nscd = "nscd.service" |
diff --git a/meta/recipes-core/glibc/glibc-y2038-tests_2.40.bb b/meta/recipes-core/glibc/glibc-y2038-tests_2.40.bb index 8ed94386d2..9ea09a4e12 100644 --- a/meta/recipes-core/glibc/glibc-y2038-tests_2.40.bb +++ b/meta/recipes-core/glibc/glibc-y2038-tests_2.40.bb | |||
@@ -31,7 +31,7 @@ RDEPENDS:${PN} = "glibc libgcc sed bash" | |||
31 | RDEPENDS:${PN}-ptest = "${PN}" | 31 | RDEPENDS:${PN}-ptest = "${PN}" |
32 | DEPENDS += "sed" | 32 | DEPENDS += "sed" |
33 | 33 | ||
34 | export oe_srcdir="${exec_prefix}/src/debug/glibc/${PV}/" | 34 | export oe_srcdir = "${exec_prefix}/src/debug/glibc/${PV}/" |
35 | 35 | ||
36 | # Just build tests for target - do not run them | 36 | # Just build tests for target - do not run them |
37 | do_check:append () { | 37 | do_check:append () { |