From 8b895439f7b5a09976ef1c44b1c7507c5506cb36 Mon Sep 17 00:00:00 2001 From: Pablo Saavedra Date: Fri, 8 Nov 2024 08:41:22 +0100 Subject: [PATCH] wpewebkit: Fix PACKAGECONFIG for speech-synthesis Corrected the PACKAGECONFIG option for speech-synthesis by adding a missing '-' to ensure the proper configuration flag is used. Unreviewed change. --- recipes-browser/wpewebkit/wpewebkit.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-browser/wpewebkit/wpewebkit.inc b/recipes-browser/wpewebkit/wpewebkit.inc index 2837dea0..7f983156 100644 --- a/recipes-browser/wpewebkit/wpewebkit.inc +++ b/recipes-browser/wpewebkit/wpewebkit.inc @@ -62,7 +62,7 @@ PACKAGECONFIG[offscreen-canvas] = "-DENABLE_OFFSCREEN_CANVAS=ON -DENABLE_OFFSCRE PACKAGECONFIG[service-worker] = "-DENABLE_SERVICE_WORKER=ON,-DENABLE_SERVICE_WORKER=OFF," -PACKAGECONFIG[speech-synthesis] = "DENABLE_SPEECH_SYNTHESIS=ON,-DENABLE_SPEECH_SYNTHESIS=OFF,flite" +PACKAGECONFIG[speech-synthesis] = "-DENABLE_SPEECH_SYNTHESIS=ON,-DENABLE_SPEECH_SYNTHESIS=OFF,flite" # Remove speech-synthesis. Flite is not available before langdale. PACKAGECONFIG:remove = "${@bb.utils.contains_any('LAYERSERIES_CORENAMES', 'kirkstone', 'speech-synthesis', '', d)}"