summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/btrfs-tools
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-devtools/btrfs-tools
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-devtools/btrfs-tools')
-rw-r--r--meta/recipes-devtools/btrfs-tools/btrfs-tools_5.13.bb12
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.13.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.13.bb
index fa33cad7b9..5f8621faf1 100644
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.13.bb
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.13.bb
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = " \
14" 14"
15SECTION = "base" 15SECTION = "base"
16DEPENDS = "lzo util-linux zlib" 16DEPENDS = "lzo util-linux zlib"
17DEPENDS_append_class-target = " udev" 17DEPENDS:append:class-target = " udev"
18 18
19SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git \ 19SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git \
20 file://0001-Add-a-possibility-to-specify-where-python-modules-ar.patch \ 20 file://0001-Add-a-possibility-to-specify-where-python-modules-ar.patch \
@@ -49,25 +49,25 @@ inherit ${@bb.utils.contains('PACKAGECONFIG', 'python', 'distutils3-base', '', d
49CLEANBROKEN = "1" 49CLEANBROKEN = "1"
50 50
51EXTRA_OECONF = "--enable-largefile" 51EXTRA_OECONF = "--enable-largefile"
52EXTRA_OECONF_append_libc-musl = " --disable-backtrace " 52EXTRA_OECONF:append:libc-musl = " --disable-backtrace "
53EXTRA_PYTHON_CFLAGS = "${DEBUG_PREFIX_MAP}" 53EXTRA_PYTHON_CFLAGS = "${DEBUG_PREFIX_MAP}"
54EXTRA_PYTHON_CFLAGS_class-native = "" 54EXTRA_PYTHON_CFLAGS:class-native = ""
55EXTRA_PYTHON_LDFLAGS = "${LDFLAGS}" 55EXTRA_PYTHON_LDFLAGS = "${LDFLAGS}"
56EXTRA_OEMAKE = "V=1 'EXTRA_PYTHON_CFLAGS=${EXTRA_PYTHON_CFLAGS}' 'EXTRA_PYTHON_LDFLAGS=${EXTRA_PYTHON_LDFLAGS}'" 56EXTRA_OEMAKE = "V=1 'EXTRA_PYTHON_CFLAGS=${EXTRA_PYTHON_CFLAGS}' 'EXTRA_PYTHON_LDFLAGS=${EXTRA_PYTHON_LDFLAGS}'"
57 57
58do_configure_prepend() { 58do_configure:prepend() {
59 # Upstream doesn't ship this and autoreconf won't install it as automake isn't used. 59 # Upstream doesn't ship this and autoreconf won't install it as automake isn't used.
60 mkdir -p ${S}/config 60 mkdir -p ${S}/config
61 cp -f $(automake --print-libdir)/install-sh ${S}/config/ 61 cp -f $(automake --print-libdir)/install-sh ${S}/config/
62} 62}
63 63
64 64
65do_install_append() { 65do_install:append() {
66 if [ "${@bb.utils.filter('PACKAGECONFIG', 'python', d)}" ]; then 66 if [ "${@bb.utils.filter('PACKAGECONFIG', 'python', d)}" ]; then
67 oe_runmake 'DESTDIR=${D}' 'PYTHON_SITEPACKAGES_DIR=${PYTHON_SITEPACKAGES_DIR}' install_python 67 oe_runmake 'DESTDIR=${D}' 'PYTHON_SITEPACKAGES_DIR=${PYTHON_SITEPACKAGES_DIR}' install_python
68 fi 68 fi
69} 69}
70 70
71RDEPENDS_${PN} = "libgcc" 71RDEPENDS:${PN} = "libgcc"
72 72
73BBCLASSEXTEND = "native nativesdk" 73BBCLASSEXTEND = "native nativesdk"