]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
dnf/mesa: Fix missing leading whitespace with ':append'
authorNiko Mauno <niko.mauno@vaisala.com>
Tue, 9 Jul 2024 12:02:09 +0000 (15:02 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 9 Jul 2024 13:00:21 +0000 (14:00 +0100)
Mitigate occurrences where ':append' operator is used and leading
whitespace character is obviously missing, risking inadvertent
string concatenation.

Signed-off-by: Niko Mauno <niko.mauno@vaisala.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/dnf/dnf_4.20.0.bb
meta/recipes-graphics/mesa/mesa.inc

index 4757346cbf0dd221c94a0240c82e88788b88bfa3..98edab061420d042388c79474868468d12990867 100644 (file)
@@ -18,7 +18,7 @@ SRC_URI = "git://github.com/rpm-software-management/dnf.git;branch=master;protoc
            file://0001-lock.py-fix-Exception-handling.patch \
            "
 
-SRC_URI:append:class-native = "file://0001-dnf-write-the-log-lock-to-root.patch"
+SRC_URI:append:class-native = " file://0001-dnf-write-the-log-lock-to-root.patch"
 
 SRCREV = "e3cb438c0fd08c79676c0f3276aa7d75cd8557c6"
 UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)"
index 272d57c7496540d9e8db2213fe1b8c4e316aee9a..d56def291630d4c9c49ed04f1f8de9bfe55d47ec 100644 (file)
@@ -91,7 +91,7 @@ PACKAGECONFIG = " \
        ${@bb.utils.contains('DISTRO_FEATURES', 'vulkan', 'zink', '', d)} \
 "
 
-PACKAGECONFIG:append:class-native = "gallium-llvm r600"
+PACKAGECONFIG:append:class-native = " gallium-llvm r600"
 
 # "gbm" requires "opengl"
 PACKAGECONFIG[gbm] = "-Dgbm=enabled,-Dgbm=disabled"