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-devtools/gcc/libgcc.inc | |
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-devtools/gcc/libgcc.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/libgcc.inc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-devtools/gcc/libgcc.inc b/meta/recipes-devtools/gcc/libgcc.inc index 6d48ec9809..84a2d930df 100644 --- a/meta/recipes-devtools/gcc/libgcc.inc +++ b/meta/recipes-devtools/gcc/libgcc.inc | |||
@@ -2,7 +2,7 @@ require libgcc-common.inc | |||
2 | 2 | ||
3 | DEPENDS = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++ virtual/${MLPREFIX}libc" | 3 | DEPENDS = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++ virtual/${MLPREFIX}libc" |
4 | 4 | ||
5 | do_install_append_class-target () { | 5 | do_install:append:class-target () { |
6 | if [ "${TCLIBC}" != "glibc" ]; then | 6 | if [ "${TCLIBC}" != "glibc" ]; then |
7 | case "${TARGET_OS}" in | 7 | case "${TARGET_OS}" in |
8 | "linux-musl" | "linux-*spe") extra_target_os="linux";; | 8 | "linux-musl" | "linux-*spe") extra_target_os="linux";; |
@@ -32,12 +32,12 @@ PACKAGES = "\ | |||
32 | 32 | ||
33 | # All libgcc source is marked with the exception. | 33 | # All libgcc source is marked with the exception. |
34 | # | 34 | # |
35 | LICENSE_${PN} = "GPL-3.0-with-GCC-exception" | 35 | LICENSE:${PN} = "GPL-3.0-with-GCC-exception" |
36 | LICENSE_${PN}-dev = "GPL-3.0-with-GCC-exception" | 36 | LICENSE:${PN}-dev = "GPL-3.0-with-GCC-exception" |
37 | LICENSE_${PN}-dbg = "GPL-3.0-with-GCC-exception" | 37 | LICENSE:${PN}-dbg = "GPL-3.0-with-GCC-exception" |
38 | 38 | ||
39 | 39 | ||
40 | FILES_${PN}-dev = "\ | 40 | FILES:${PN}-dev = "\ |
41 | ${base_libdir}/libgcc*.so \ | 41 | ${base_libdir}/libgcc*.so \ |
42 | ${@oe.utils.conditional('BASETARGET_SYS', '${TARGET_SYS}', '', '${libdir}/${BASETARGET_SYS}', d)} \ | 42 | ${@oe.utils.conditional('BASETARGET_SYS', '${TARGET_SYS}', '', '${libdir}/${BASETARGET_SYS}', d)} \ |
43 | ${libdir}/${TARGET_SYS}/${BINV}* \ | 43 | ${libdir}/${TARGET_SYS}/${BINV}* \ |
@@ -49,5 +49,5 @@ do_package_write_ipk[depends] += "virtual/${MLPREFIX}libc:do_packagedata" | |||
49 | do_package_write_deb[depends] += "virtual/${MLPREFIX}libc:do_packagedata" | 49 | do_package_write_deb[depends] += "virtual/${MLPREFIX}libc:do_packagedata" |
50 | do_package_write_rpm[depends] += "virtual/${MLPREFIX}libc:do_packagedata" | 50 | do_package_write_rpm[depends] += "virtual/${MLPREFIX}libc:do_packagedata" |
51 | 51 | ||
52 | INSANE_SKIP_${PN}-dev = "staticdev" | 52 | INSANE_SKIP:${PN}-dev = "staticdev" |
53 | 53 | ||