mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 11:28:58 +00:00
Fix missing leading whitespace with ':append'
Mitigate occurences where ':append' operator is used and leading whitespace character is obviously missing, risking inadvertent string concatenation. (From OE-Core rev: fcd340ec53ff8352b8cae0eb351810072b025a08) (From OE-Core rev: cb64ace13db85e143d99627c8803fbb13ba18617) Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
579047d4e6
commit
4abffe76eb
@@ -62,7 +62,7 @@ IMAGE_FEATURES_REPLACES_ssh-server-openssh = "ssh-server-dropbear"
|
||||
# Do not install openssh complementary packages if either packagegroup-core-ssh-dropbear or dropbear
|
||||
# is installed # to avoid openssh-dropbear conflict
|
||||
# see [Yocto #14858] for more information
|
||||
PACKAGE_EXCLUDE_COMPLEMENTARY:append = "${@bb.utils.contains_any('PACKAGE_INSTALL', 'packagegroup-core-ssh-dropbear dropbear', 'openssh', '' , d)}"
|
||||
PACKAGE_EXCLUDE_COMPLEMENTARY:append = "${@bb.utils.contains_any('PACKAGE_INSTALL', 'packagegroup-core-ssh-dropbear dropbear', ' openssh', '' , d)}"
|
||||
|
||||
# IMAGE_FEATURES_CONFLICTS_foo = 'bar1 bar2'
|
||||
# An error exception would be raised if both image features foo and bar1(or bar2) are included
|
||||
|
||||
@@ -114,7 +114,7 @@ python write_host_sdk_ext_manifest () {
|
||||
f.write("%s %s %s\n" % (info[1], info[2], info[3]))
|
||||
}
|
||||
|
||||
SDK_POSTPROCESS_COMMAND:append:task-populate-sdk-ext = "write_target_sdk_ext_manifest; write_host_sdk_ext_manifest; "
|
||||
SDK_POSTPROCESS_COMMAND:append:task-populate-sdk-ext = " write_target_sdk_ext_manifest; write_host_sdk_ext_manifest; "
|
||||
|
||||
SDK_TITLE:task-populate-sdk-ext = "${@d.getVar('DISTRO_NAME') or d.getVar('DISTRO')} Extensible SDK"
|
||||
|
||||
|
||||
@@ -99,7 +99,7 @@ PTESTS_SLOW = "\
|
||||
"
|
||||
|
||||
PTESTS_SLOW:remove:riscv64 = "valgrind-ptest"
|
||||
PTESTS_PROBLEMS:append:riscv64 = "valgrind-ptest"
|
||||
PTESTS_PROBLEMS:append:riscv64 = " valgrind-ptest"
|
||||
|
||||
# ruby-ptest \ # Timeout
|
||||
# lz4-ptest \ # Needs a rewrite
|
||||
|
||||
Reference in New Issue
Block a user