Since the creation of the curl recipe in this repo in 2010, the search path has been specified relative to STAGING_LIBDIR. This causes the a dependency from the task hash of do_recipe_qa on baselib, which may be 'lib' or 'lib64' depending on the target architecture. This dependency trips up yocto-check-layer.
Somewhere between the depths of history and today, the need for this search path has gone away. Simply using '--with-zlib' now works. Signed-off-by: Paul Barker <[email protected]> --- meta/recipes-support/curl/curl_8.19.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-support/curl/curl_8.19.0.bb b/meta/recipes-support/curl/curl_8.19.0.bb index ee9c90846d19..b9251336b8b3 100644 --- a/meta/recipes-support/curl/curl_8.19.0.bb +++ b/meta/recipes-support/curl/curl_8.19.0.bb @@ -73,7 +73,7 @@ PACKAGECONFIG[tftp] = "--enable-tftp,--disable-tftp," PACKAGECONFIG[threaded-resolver] = "--enable-threaded-resolver,--disable-threaded-resolver,,,,ares" PACKAGECONFIG[verbose] = "--enable-verbose,--disable-verbose" PACKAGECONFIG[websockets] = "--enable-websockets,--disable-websockets" -PACKAGECONFIG[zlib] = "--with-zlib=${STAGING_LIBDIR}/../,--without-zlib,zlib" +PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib" PACKAGECONFIG[zstd] = "--with-zstd,--without-zstd,zstd" # Use host certificates for non-target builds. As libcurl doesn't honor any of the env vars (like -- 2.43.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#233419): https://lists.openembedded.org/g/openembedded-core/message/233419 Mute This Topic: https://lists.openembedded.org/mt/118386720/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
