diff options
author | Niko Mauno <niko.mauno@vaisala.com> | 2024-07-09 15:02:09 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-07-09 14:00:41 +0100 |
commit | 0b6ca9beeff927bbb6158c71596ac475550559d8 (patch) | |
tree | 4409405e28162a5f4315fd11019aa1d65c09dfd6 | |
parent | 6e80b2ab660e60135b52bd7358f0ce7612226f06 (diff) | |
download | poky-0b6ca9beeff927bbb6158c71596ac475550559d8.tar.gz |
dnf/mesa: Fix missing leading whitespace with ':append'
Mitigate occurrences where ':append' operator is used and leading
whitespace character is obviously missing, risking inadvertent
string concatenation.
(From OE-Core rev: 314041fd126a4800a5a5d9fcd84c525319479256)
Signed-off-by: Niko Mauno <niko.mauno@vaisala.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/dnf/dnf_4.20.0.bb | 2 | ||||
-rw-r--r-- | meta/recipes-graphics/mesa/mesa.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/dnf/dnf_4.20.0.bb b/meta/recipes-devtools/dnf/dnf_4.20.0.bb index 4757346cbf..98edab0614 100644 --- a/meta/recipes-devtools/dnf/dnf_4.20.0.bb +++ b/meta/recipes-devtools/dnf/dnf_4.20.0.bb | |||
@@ -18,7 +18,7 @@ SRC_URI = "git://github.com/rpm-software-management/dnf.git;branch=master;protoc | |||
18 | file://0001-lock.py-fix-Exception-handling.patch \ | 18 | file://0001-lock.py-fix-Exception-handling.patch \ |
19 | " | 19 | " |
20 | 20 | ||
21 | SRC_URI:append:class-native = "file://0001-dnf-write-the-log-lock-to-root.patch" | 21 | SRC_URI:append:class-native = " file://0001-dnf-write-the-log-lock-to-root.patch" |
22 | 22 | ||
23 | SRCREV = "e3cb438c0fd08c79676c0f3276aa7d75cd8557c6" | 23 | SRCREV = "e3cb438c0fd08c79676c0f3276aa7d75cd8557c6" |
24 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)" | 24 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)" |
diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc index 272d57c749..d56def2916 100644 --- a/meta/recipes-graphics/mesa/mesa.inc +++ b/meta/recipes-graphics/mesa/mesa.inc | |||
@@ -91,7 +91,7 @@ PACKAGECONFIG = " \ | |||
91 | ${@bb.utils.contains('DISTRO_FEATURES', 'vulkan', 'zink', '', d)} \ | 91 | ${@bb.utils.contains('DISTRO_FEATURES', 'vulkan', 'zink', '', d)} \ |
92 | " | 92 | " |
93 | 93 | ||
94 | PACKAGECONFIG:append:class-native = "gallium-llvm r600" | 94 | PACKAGECONFIG:append:class-native = " gallium-llvm r600" |
95 | 95 | ||
96 | # "gbm" requires "opengl" | 96 | # "gbm" requires "opengl" |
97 | PACKAGECONFIG[gbm] = "-Dgbm=enabled,-Dgbm=disabled" | 97 | PACKAGECONFIG[gbm] = "-Dgbm=enabled,-Dgbm=disabled" |