diff mbox series

[master/kirkstone,27/52] meta-arago-distro: curl: add proxy and verbose support

Message ID 20220913040246.2365077-28-denis@denix.org
State Accepted
Delegated to: Ryan Eatmon
Headers show
Series Latest 2022.09 sync-up with Dunfell | expand

Commit Message

Denys Dmytriyenko Sept. 13, 2022, 4:02 a.m. UTC
From: Anand Gadiyar <gadiyar@ti.com>

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 <gadiyar@ti.com>
Reviewed-by: Ryan Eatmon <reatmon@ti.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
---
 meta-arago-distro/conf/distro/arago.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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"