From 690ea7354726e07563c189d96e0d63f58b973c80 Mon Sep 17 00:00:00 2001 From: Trevor Woerner Date: Fri, 11 Dec 2020 00:52:36 -0500 Subject: userland: fix invalid packageconfig Fix the "allapps" PACKAGECONFIG to avoid the QA warning/error: userland-20201027-r0 do_configure: QA Issue: userland: invalid PACKAGECONFIG: allapps [invalid-packageconfig] Signed-off-by: Trevor Woerner (cherry picked from commit 4b89f636992b822d13ac748a9f959fbedd962fd4) Signed-off-by: Ricardo Salveti --- recipes-graphics/userland/userland_git.bb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipes-graphics/userland/userland_git.bb b/recipes-graphics/userland/userland_git.bb index 4a9fd21..6dfc8a3 100644 --- a/recipes-graphics/userland/userland_git.bb +++ b/recipes-graphics/userland/userland_git.bb @@ -55,10 +55,8 @@ inherit cmake pkgconfig ASNEEDED = "" -ALLAPPS = "${@bb.utils.contains('PACKAGECONFIG', 'allapps', '-DALL_APPS=true', '', d)}" EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release -DCMAKE_EXE_LINKER_FLAGS='-Wl,--no-as-needed' \ -DVMCS_INSTALL_PREFIX=${exec_prefix} \ - ${ALLAPPS} \ " EXTRA_OECMAKE_append_aarch64 = " -DARM64=ON " @@ -67,6 +65,7 @@ EXTRA_OECMAKE_append_aarch64 = " -DARM64=ON " PACKAGECONFIG ?= "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland', '', d)}" PACKAGECONFIG[wayland] = "-DBUILD_WAYLAND=TRUE -DWAYLAND_SCANNER_EXECUTABLE:FILEPATH=${STAGING_BINDIR_NATIVE}/wayland-scanner,,wayland-native wayland" +PACKAGECONFIG[allapps] = "-DALL_APPS=true,,," CFLAGS_append = " -fPIC" -- cgit v1.2.3-54-g00ecf