summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/libarchive
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-28 23:28:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-02 15:44:10 +0100
commitbb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch)
tree76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-extended/libarchive
parentfcc456ee4b8f619134abb4649db53c638074082c (diff)
downloadpoky-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-extended/libarchive')
-rw-r--r--meta/recipes-extended/libarchive/libarchive_3.5.1.bb14
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/recipes-extended/libarchive/libarchive_3.5.1.bb b/meta/recipes-extended/libarchive/libarchive_3.5.1.bb
index ebecee1f3e..7d98e573b8 100644
--- a/meta/recipes-extended/libarchive/libarchive_3.5.1.bb
+++ b/meta/recipes-extended/libarchive/libarchive_3.5.1.bb
@@ -9,12 +9,12 @@ DEPENDS = "e2fsprogs-native"
9 9
10PACKAGECONFIG ?= "zlib bz2 xz lzo zstd" 10PACKAGECONFIG ?= "zlib bz2 xz lzo zstd"
11 11
12PACKAGECONFIG_append_class-target = "\ 12PACKAGECONFIG:append:class-target = "\
13 ${@bb.utils.filter('DISTRO_FEATURES', 'acl xattr', d)} \ 13 ${@bb.utils.filter('DISTRO_FEATURES', 'acl xattr', d)} \
14" 14"
15 15
16DEPENDS_BZIP2 = "bzip2-replacement-native" 16DEPENDS_BZIP2 = "bzip2-replacement-native"
17DEPENDS_BZIP2_class-target = "bzip2" 17DEPENDS_BZIP2:class-target = "bzip2"
18 18
19PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," 19PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl,"
20PACKAGECONFIG[xattr] = "--enable-xattr,--disable-xattr,attr," 20PACKAGECONFIG[xattr] = "--enable-xattr,--disable-xattr,attr,"
@@ -41,7 +41,7 @@ inherit autotools update-alternatives pkgconfig
41CPPFLAGS += "-I${WORKDIR}/extra-includes" 41CPPFLAGS += "-I${WORKDIR}/extra-includes"
42 42
43do_configure[cleandirs] += "${WORKDIR}/extra-includes" 43do_configure[cleandirs] += "${WORKDIR}/extra-includes"
44do_configure_prepend() { 44do_configure:prepend() {
45 # We just need the headers for some type constants, so no need to 45 # We just need the headers for some type constants, so no need to
46 # build all of e2fsprogs for the target 46 # build all of e2fsprogs for the target
47 cp -R ${STAGING_INCDIR_NATIVE}/ext2fs ${WORKDIR}/extra-includes/ 47 cp -R ${STAGING_INCDIR_NATIVE}/ext2fs ${WORKDIR}/extra-includes/
@@ -50,16 +50,16 @@ do_configure_prepend() {
50ALTERNATIVE_PRIORITY = "80" 50ALTERNATIVE_PRIORITY = "80"
51 51
52PACKAGES =+ "bsdtar" 52PACKAGES =+ "bsdtar"
53FILES_bsdtar = "${bindir}/bsdtar" 53FILES:bsdtar = "${bindir}/bsdtar"
54 54
55ALTERNATIVE_bsdtar = "tar" 55ALTERNATIVE:bsdtar = "tar"
56ALTERNATIVE_LINK_NAME[tar] = "${base_bindir}/tar" 56ALTERNATIVE_LINK_NAME[tar] = "${base_bindir}/tar"
57ALTERNATIVE_TARGET[tar] = "${bindir}/bsdtar" 57ALTERNATIVE_TARGET[tar] = "${bindir}/bsdtar"
58 58
59PACKAGES =+ "bsdcpio" 59PACKAGES =+ "bsdcpio"
60FILES_bsdcpio = "${bindir}/bsdcpio" 60FILES:bsdcpio = "${bindir}/bsdcpio"
61 61
62ALTERNATIVE_bsdcpio = "cpio" 62ALTERNATIVE:bsdcpio = "cpio"
63ALTERNATIVE_LINK_NAME[cpio] = "${base_bindir}/cpio" 63ALTERNATIVE_LINK_NAME[cpio] = "${base_bindir}/cpio"
64ALTERNATIVE_TARGET[cpio] = "${bindir}/bsdcpio" 64ALTERNATIVE_TARGET[cpio] = "${bindir}/bsdcpio"
65 65