package/qt6/qt6base: use correct QT6BASE_CONF_OPTS variable for Vulkan

The Vulkan option was appended to QT6BASE_CONFIGURE_OPTS instead of
QT6BASE_CONF_OPTS, which is the variable actually used during CMake
configuration. This prevented the feature from being enabled/disabled
as expected.

Fixes: 1c27f3a12d ("package/qt6base: add vulkan option")
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 451e735aa0)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
This commit is contained in:
Dario Binacchi
2025-09-09 16:47:13 +02:00
committed by Thomas Perale
parent 611e3fe80d
commit 8d47bca9a5

View File

@@ -183,9 +183,9 @@ QT6BASE_DEPENDENCIES += freetype
ifeq ($(BR2_PACKAGE_QT6BASE_VULKAN),y)
QT6BASE_DEPENDENCIES += vulkan-headers vulkan-loader
QT6BASE_CONFIGURE_OPTS += -DFEATURE_vulkan=ON
QT6BASE_CONF_OPTS += -DFEATURE_vulkan=ON
else
QT6BASE_CONFIGURE_OPTS += -DFEATURE_vulkan=OFF
QT6BASE_CONF_OPTS += -DFEATURE_vulkan=OFF
endif
ifeq ($(BR2_PACKAGE_QT6BASE_LINUXFB),y)