From: Paul Barker Date: Thu, 19 Mar 2026 16:04:43 +0000 (+0000) Subject: flac: Use arch independent search path X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=35341983fb34e14009291a121216ea0e39422bde;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git flac: Use arch independent search path The value of STAGING_LIBDIR depends on baselib, which may be "lib" or "lib64" depending on the target architecture. To avoid making PACKAGECONFIG unnecessarily arch-dependent, we can use STAGING_DIR_HOST as the search prefix for libogg instead. The search prefix is necessary here, removing it completely results in compilation errors. Signed-off-by: Paul Barker Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-multimedia/flac/flac_1.5.0.bb b/meta/recipes-multimedia/flac/flac_1.5.0.bb index e227133ad79..2f43b4e84b2 100644 --- a/meta/recipes-multimedia/flac/flac_1.5.0.bb +++ b/meta/recipes-multimedia/flac/flac_1.5.0.bb @@ -34,7 +34,7 @@ PACKAGECONFIG ??= " \ ogg \ " PACKAGECONFIG[avx] = "--enable-avx,--disable-avx" -PACKAGECONFIG[ogg] = "--enable-ogg --with-ogg-libraries=${STAGING_LIBDIR} --with-ogg-includes=${STAGING_INCDIR},--disable-ogg,libogg" +PACKAGECONFIG[ogg] = "--enable-ogg --with-ogg=${STAGING_DIR_HOST},--disable-ogg,libogg" PACKAGES += "libflac libflac++" FILES:${PN} = "${bindir}/*"