From: Anand Gadiyar <[email protected]> Our PACKAGECONFIG override for curl was done to prefer OpenSSL for curl but seems to have the side effect of overriding other build flags enabled in the upstream recipe, specifically the ones that enable verbose debug prints and proxy support.
This affects git clone while behind a proxy. Explicitly enable these in arago.conf. Signed-off-by: Anand Gadiyar <[email protected]> Reviewed-by: Ryan Eatmon <[email protected]> Signed-off-by: Ryan Eatmon <[email protected]> Signed-off-by: Denys Dmytriyenko <[email protected]> --- meta-arago-distro/conf/distro/arago.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf index e24cace9..8cf7b84a 100644 --- a/meta-arago-distro/conf/distro/arago.conf +++ b/meta-arago-distro/conf/distro/arago.conf @@ -127,7 +127,7 @@ PACKAGECONFIG:append:pn-qtwayland = " examples" PACKAGECONFIG:append:pn-qtwebengine = " examples" # Prefer OpenSSL over GnuTLS for curl due to TSU exemptions -PACKAGECONFIG:pn-curl = "${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d)} openssl zlib" +PACKAGECONFIG:pn-curl = "${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d)} proxy openssl verbose zlib" PACKAGECONFIG:pn-glmark2 = "drm-gles2 wayland-gles2" -- 2.25.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#13999): https://lists.yoctoproject.org/g/meta-arago/message/13999 Mute This Topic: https://lists.yoctoproject.org/mt/93649100/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
