summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-01-31 13:52:13 +0000
committerKhem Raj <raj.khem@gmail.com>2025-01-31 10:34:03 -0800
commitbd6a1bb27844cb3c839ada75a5796c611dabf14a (patch)
treec759e40c4bf189fef9a5b34ae31b698e7de9c71b /meta-networking/recipes-support
parent86980f2df271c4a798efe9fc40023b2db6911f47 (diff)
downloadmeta-openembedded-bd6a1bb27844cb3c839ada75a5796c611dabf14a.tar.gz
recipes: Fix variable assignment whitespace
Recipes are much more readable with whitespace around the assignment operators. Fix various assignments in meta-openembedded recipes to show this is definitely the preferred formatting. This fixes recipes with larger numbers of issues but there are just under 100 other references left to fix. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-support')
-rw-r--r--meta-networking/recipes-support/libldb/libldb_2.8.1.bb4
-rw-r--r--meta-networking/recipes-support/libtevent/libtevent_0.16.1.bb4
-rw-r--r--meta-networking/recipes-support/mdio-tools/mdio-netlink_1.3.1.bb2
3 files changed, 5 insertions, 5 deletions
diff --git a/meta-networking/recipes-support/libldb/libldb_2.8.1.bb b/meta-networking/recipes-support/libldb/libldb_2.8.1.bb
index 29ff2cf6f2..2040d016e5 100644
--- a/meta-networking/recipes-support/libldb/libldb_2.8.1.bb
+++ b/meta-networking/recipes-support/libldb/libldb_2.8.1.bb
@@ -6,7 +6,7 @@ LICENSE = "LGPL-3.0-or-later & LGPL-2.1-or-later & GPL-3.0-or-later"
6DEPENDS += "libtdb libtalloc libtevent popt cmocka" 6DEPENDS += "libtdb libtalloc libtevent popt cmocka"
7RDEPENDS:pyldb += "python3" 7RDEPENDS:pyldb += "python3"
8 8
9export PYTHONHASHSEED="1" 9export PYTHONHASHSEED = "1"
10export PYTHONARCHDIR = "${PYTHON_SITEPACKAGES_DIR}" 10export PYTHONARCHDIR = "${PYTHON_SITEPACKAGES_DIR}"
11 11
12SRC_URI = "http://samba.org/ftp/ldb/ldb-${PV}.tar.gz \ 12SRC_URI = "http://samba.org/ftp/ldb/ldb-${PV}.tar.gz \
@@ -42,7 +42,7 @@ S = "${WORKDIR}/ldb-${PV}"
42 42
43# Cross_compile cannot use preforked process, since fork process earlier than point subproces.popen 43# Cross_compile cannot use preforked process, since fork process earlier than point subproces.popen
44# to cross Popen 44# to cross Popen
45export WAF_NO_PREFORK="yes" 45export WAF_NO_PREFORK = "yes"
46 46
47EXTRA_OECONF += "--disable-rpath \ 47EXTRA_OECONF += "--disable-rpath \
48 --disable-rpath-install \ 48 --disable-rpath-install \
diff --git a/meta-networking/recipes-support/libtevent/libtevent_0.16.1.bb b/meta-networking/recipes-support/libtevent/libtevent_0.16.1.bb
index 0a37d7977d..e1089d091e 100644
--- a/meta-networking/recipes-support/libtevent/libtevent_0.16.1.bb
+++ b/meta-networking/recipes-support/libtevent/libtevent_0.16.1.bb
@@ -6,7 +6,7 @@ LICENSE = "LGPL-3.0-or-later"
6DEPENDS += "libtalloc libtirpc cmocka" 6DEPENDS += "libtalloc libtirpc cmocka"
7RDEPENDS:python3-tevent = "python3" 7RDEPENDS:python3-tevent = "python3"
8 8
9export PYTHONHASHSEED="1" 9export PYTHONHASHSEED = "1"
10export PYTHONARCHDIR = "${PYTHON_SITEPACKAGES_DIR}" 10export PYTHONARCHDIR = "${PYTHON_SITEPACKAGES_DIR}"
11 11
12SRC_URI = "https://samba.org/ftp/tevent/tevent-${PV}.tar.gz \ 12SRC_URI = "https://samba.org/ftp/tevent/tevent-${PV}.tar.gz \
@@ -37,7 +37,7 @@ S = "${WORKDIR}/tevent-${PV}"
37 37
38# Cross_compile cannot use preforked process, since fork process earlier than point subproces.popen 38# Cross_compile cannot use preforked process, since fork process earlier than point subproces.popen
39# to cross Popen 39# to cross Popen
40export WAF_NO_PREFORK="yes" 40export WAF_NO_PREFORK = "yes"
41 41
42EXTRA_OECONF += "--disable-rpath \ 42EXTRA_OECONF += "--disable-rpath \
43 --disable-rpath-install \ 43 --disable-rpath-install \
diff --git a/meta-networking/recipes-support/mdio-tools/mdio-netlink_1.3.1.bb b/meta-networking/recipes-support/mdio-tools/mdio-netlink_1.3.1.bb
index 3867b89052..9a00d66a52 100644
--- a/meta-networking/recipes-support/mdio-tools/mdio-netlink_1.3.1.bb
+++ b/meta-networking/recipes-support/mdio-tools/mdio-netlink_1.3.1.bb
@@ -8,7 +8,7 @@ S = "${WORKDIR}/git"
8inherit module 8inherit module
9 9
10EXTRA_OEMAKE = "-C kernel/ KDIR=${STAGING_KERNEL_DIR}" 10EXTRA_OEMAKE = "-C kernel/ KDIR=${STAGING_KERNEL_DIR}"
11MODULES_MODULE_SYMVERS_LOCATION="kernel" 11MODULES_MODULE_SYMVERS_LOCATION = "kernel"
12MODULES_INSTALL_TARGET = "install" 12MODULES_INSTALL_TARGET = "install"
13 13
14RPROVIDES:${PN} += "kernel-module-mdio-netlink" 14RPROVIDES:${PN} += "kernel-module-mdio-netlink"