diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-28 23:28:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-02 15:44:10 +0100 |
commit | bb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch) | |
tree | 76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-support/curl | |
parent | fcc456ee4b8f619134abb4649db53c638074082c (diff) | |
download | poky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz |
Convert to new override syntax
This is the result of automated script conversion:
scripts/contrib/convert-overrides.py <oe-core directory>
converting the metadata to use ":" as the override character instead of "_".
(From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/curl')
-rw-r--r-- | meta/recipes-support/curl/curl_7.77.0.bb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-support/curl/curl_7.77.0.bb b/meta/recipes-support/curl/curl_7.77.0.bb index ee1aa89f27..6b15a6a3e8 100644 --- a/meta/recipes-support/curl/curl_7.77.0.bb +++ b/meta/recipes-support/curl/curl_7.77.0.bb | |||
@@ -21,8 +21,8 @@ CVE_PRODUCT = "haxx:curl haxx:libcurl curl:curl curl:libcurl libcurl:libcurl dan | |||
21 | inherit autotools pkgconfig binconfig multilib_header | 21 | inherit autotools pkgconfig binconfig multilib_header |
22 | 22 | ||
23 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)} ssl libidn proxy threaded-resolver verbose zlib" | 23 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)} ssl libidn proxy threaded-resolver verbose zlib" |
24 | PACKAGECONFIG_class-native = "ipv6 proxy ssl threaded-resolver verbose zlib" | 24 | PACKAGECONFIG:class-native = "ipv6 proxy ssl threaded-resolver verbose zlib" |
25 | PACKAGECONFIG_class-nativesdk = "ipv6 proxy ssl threaded-resolver verbose zlib" | 25 | PACKAGECONFIG:class-nativesdk = "ipv6 proxy ssl threaded-resolver verbose zlib" |
26 | 26 | ||
27 | # 'ares' and 'threaded-resolver' are mutually exclusive | 27 | # 'ares' and 'threaded-resolver' are mutually exclusive |
28 | PACKAGECONFIG[ares] = "--enable-ares,--disable-ares,c-ares,,,threaded-resolver" | 28 | PACKAGECONFIG[ares] = "--enable-ares,--disable-ares,c-ares,,,threaded-resolver" |
@@ -68,7 +68,7 @@ EXTRA_OECONF = " \ | |||
68 | --disable-curldebug \ | 68 | --disable-curldebug \ |
69 | " | 69 | " |
70 | 70 | ||
71 | do_install_append_class-target() { | 71 | do_install:append:class-target() { |
72 | # cleanup buildpaths from curl-config | 72 | # cleanup buildpaths from curl-config |
73 | sed -i \ | 73 | sed -i \ |
74 | -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \ | 74 | -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \ |
@@ -79,10 +79,10 @@ do_install_append_class-target() { | |||
79 | 79 | ||
80 | PACKAGES =+ "lib${BPN}" | 80 | PACKAGES =+ "lib${BPN}" |
81 | 81 | ||
82 | FILES_lib${BPN} = "${libdir}/lib*.so.*" | 82 | FILES:lib${BPN} = "${libdir}/lib*.so.*" |
83 | RRECOMMENDS_lib${BPN} += "ca-certificates" | 83 | RRECOMMENDS:lib${BPN} += "ca-certificates" |
84 | 84 | ||
85 | FILES_${PN} += "${datadir}/zsh" | 85 | FILES:${PN} += "${datadir}/zsh" |
86 | 86 | ||
87 | inherit multilib_script | 87 | inherit multilib_script |
88 | MULTILIB_SCRIPTS = "${PN}-dev:${bindir}/curl-config" | 88 | MULTILIB_SCRIPTS = "${PN}-dev:${bindir}/curl-config" |