summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakash hadke <akash.hadke27@gmail.com>2025-01-10 16:39:04 +0530
committerArmin Kuster <akuster808@gmail.com>2025-01-22 19:12:54 -0500
commit198cf66134afa9d7631ee9a1e1a08d396fa58e8a (patch)
treedb7d1c05a3016a93e8307f400571a417838d2fc2
parent66ec16850573a7ec69248b81f9904cdfba79b930 (diff)
downloadmeta-openembedded-198cf66134afa9d7631ee9a1e1a08d396fa58e8a.tar.gz
meta-oe: Remove True option to getVar calls
getVar() now defaults to expanding by default, thus remove the True option from getVar() calls with a regex search and replace. Signed-off-by: Akash Hadke <akash.hadke27@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-oe/recipes-devtools/nodejs/nodejs_16.20.2.bb2
-rw-r--r--meta-oe/recipes-devtools/suitesparse/suitesparse_5.10.1.bb12
-rw-r--r--meta-oe/recipes-kernel/spidev-test/spidev-test.bb2
-rw-r--r--meta-oe/recipes-kernel/usbip-tools/usbip-tools.bb2
4 files changed, 9 insertions, 9 deletions
diff --git a/meta-oe/recipes-devtools/nodejs/nodejs_16.20.2.bb b/meta-oe/recipes-devtools/nodejs/nodejs_16.20.2.bb
index 95b36c926d..ca5deda99e 100644
--- a/meta-oe/recipes-devtools/nodejs/nodejs_16.20.2.bb
+++ b/meta-oe/recipes-devtools/nodejs/nodejs_16.20.2.bb
@@ -120,7 +120,7 @@ python do_create_v8_qemu_wrapper () {
120 on the host.""" 120 on the host."""
121 qemu_libdirs = [d.expand('${STAGING_DIR_HOST}${libdir}'), 121 qemu_libdirs = [d.expand('${STAGING_DIR_HOST}${libdir}'),
122 d.expand('${STAGING_DIR_HOST}${base_libdir}')] 122 d.expand('${STAGING_DIR_HOST}${base_libdir}')]
123 qemu_cmd = qemu_wrapper_cmdline(d, d.getVar('STAGING_DIR_HOST', True), 123 qemu_cmd = qemu_wrapper_cmdline(d, d.getVar('STAGING_DIR_HOST'),
124 qemu_libdirs) 124 qemu_libdirs)
125 wrapper_path = d.expand('${B}/v8-qemu-wrapper.sh') 125 wrapper_path = d.expand('${B}/v8-qemu-wrapper.sh')
126 with open(wrapper_path, 'w') as wrapper_file: 126 with open(wrapper_path, 'w') as wrapper_file:
diff --git a/meta-oe/recipes-devtools/suitesparse/suitesparse_5.10.1.bb b/meta-oe/recipes-devtools/suitesparse/suitesparse_5.10.1.bb
index 56cbfce20e..13e6fd066c 100644
--- a/meta-oe/recipes-devtools/suitesparse/suitesparse_5.10.1.bb
+++ b/meta-oe/recipes-devtools/suitesparse/suitesparse_5.10.1.bb
@@ -19,14 +19,14 @@ RPROVIDES:${PN} = "mongoose graphblas"
19# the command line. To get around this problem, set these variables to only the 19# the command line. To get around this problem, set these variables to only the
20# program name and prepend the rest of the value onto the corresponding FLAGS 20# program name and prepend the rest of the value onto the corresponding FLAGS
21# variable. 21# variable.
22CFLAGS:prepend := "${@" ".join(d.getVar('CC', True).split()[1:])} " 22CFLAGS:prepend := "${@" ".join(d.getVar('CC').split()[1:])} "
23export CC := "${@d.getVar('CC', True).split()[0]}" 23export CC := "${@d.getVar('CC').split()[0]}"
24 24
25CXXFLAGS:prepend := "${@" ".join(d.getVar('CXX', True).split()[1:])} " 25CXXFLAGS:prepend := "${@" ".join(d.getVar('CXX').split()[1:])} "
26export CXX := "${@d.getVar('CXX', True).split()[0]}" 26export CXX := "${@d.getVar('CXX').split()[0]}"
27 27
28LDFLAGS:prepend := "${@" ".join(d.getVar('LD', True).split()[1:])} " 28LDFLAGS:prepend := "${@" ".join(d.getVar('LD').split()[1:])} "
29export LD := "${@d.getVar('LD', True).split()[0]}" 29export LD := "${@d.getVar('LD').split()[0]}"
30 30
31export CMAKE_OPTIONS = " \ 31export CMAKE_OPTIONS = " \
32 -DCMAKE_INSTALL_PREFIX=${D}${prefix} \ 32 -DCMAKE_INSTALL_PREFIX=${D}${prefix} \
diff --git a/meta-oe/recipes-kernel/spidev-test/spidev-test.bb b/meta-oe/recipes-kernel/spidev-test/spidev-test.bb
index 81e8327032..2e8c5cbb8d 100644
--- a/meta-oe/recipes-kernel/spidev-test/spidev-test.bb
+++ b/meta-oe/recipes-kernel/spidev-test/spidev-test.bb
@@ -23,7 +23,7 @@ do_install() {
23PACKAGE_ARCH = "${MACHINE_ARCH}" 23PACKAGE_ARCH = "${MACHINE_ARCH}"
24 24
25python do_package:prepend() { 25python do_package:prepend() {
26 d.setVar('PKGV', d.getVar("KERNEL_VERSION", True).split("-")[0]) 26 d.setVar('PKGV', d.getVar("KERNEL_VERSION").split("-")[0])
27} 27}
28 28
29B = "${WORKDIR}/${BPN}-${PV}" 29B = "${WORKDIR}/${BPN}-${PV}"
diff --git a/meta-oe/recipes-kernel/usbip-tools/usbip-tools.bb b/meta-oe/recipes-kernel/usbip-tools/usbip-tools.bb
index 47938969bb..e7e4ca50af 100644
--- a/meta-oe/recipes-kernel/usbip-tools/usbip-tools.bb
+++ b/meta-oe/recipes-kernel/usbip-tools/usbip-tools.bb
@@ -65,5 +65,5 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
65# Even though the libusbip is set to version 0.0.1, set the package version to match kernel 65# Even though the libusbip is set to version 0.0.1, set the package version to match kernel
66# e.g. usbip-tools-5.14.21-r0.qemux86_64.rpm for qemu package using kernel 5.14.21 66# e.g. usbip-tools-5.14.21-r0.qemux86_64.rpm for qemu package using kernel 5.14.21
67python do_package:prepend() { 67python do_package:prepend() {
68 d.setVar('PKGV', d.getVar("KERNEL_VERSION", True).split("-")[0]) 68 d.setVar('PKGV', d.getVar("KERNEL_VERSION").split("-")[0])
69} \ No newline at end of file 69} \ No newline at end of file