piglit: Fix default package config removal

The += operator here does negate the default package config assignment.
Use :append instead.

Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
This commit is contained in:
Tom Hochstein 2024-10-15 17:50:22 -05:00
parent 4e56f722ec
commit 744540ce13

View File

@ -4,5 +4,6 @@ SRC_URI += "file://0001-tests-Fix-cl-test-Include-Directories-error-Error-0-.pat
file://0001-tests-Fix-cl-test-program-execute-builtin-builtin-fl.patch \
"
PACKAGECONFIG += "${PACKAGECONFIG_VULKAN}"
PACKAGECONFIG:append = " ${PACKAGECONFIG_VULKAN}"
PACKAGECONFIG_VULKAN ?= "${@bb.utils.filter('DISTRO_FEATURES', 'vulkan', d)}"