summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-benchmark/fio/fio_3.39.bb
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2025-03-12 12:45:50 +0100
committerKhem Raj <raj.khem@gmail.com>2025-03-13 09:50:12 -0700
commitec71a3c7d1be6d8e2042d106269db7baaeee4b81 (patch)
tree752885c23de032f7ee6a91ba07ecb9ffba64ff30 /meta-oe/recipes-benchmark/fio/fio_3.39.bb
parentd21f1f526a1d0b324ea699a506d324b1b0485cb1 (diff)
downloadmeta-openembedded-ec71a3c7d1be6d8e2042d106269db7baaeee4b81.tar.gz
fio: pass pkgconf args to configure script
This application uses a custom configure script, which is called explicitly from a do_configure task. This however means that the recipe needs to take care of passing the dynamic arguments based on the PACKAGECONFIG values. Pass the value of PACKAGECONFIG_CONFARGS to the configure script to ensure that the PACKAGECONFIG changes take effect. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-benchmark/fio/fio_3.39.bb')
-rw-r--r--meta-oe/recipes-benchmark/fio/fio_3.39.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-benchmark/fio/fio_3.39.bb b/meta-oe/recipes-benchmark/fio/fio_3.39.bb
index 473408e9b8..91bd23e50e 100644
--- a/meta-oe/recipes-benchmark/fio/fio_3.39.bb
+++ b/meta-oe/recipes-benchmark/fio/fio_3.39.bb
@@ -36,7 +36,7 @@ EXTRA_OEMAKE = "CC='${CC}' LDFLAGS='${LDFLAGS}'"
36EXTRA_OECONF = "${@bb.utils.contains('MACHINE_FEATURES', 'x86', '--disable-optimizations', '', d)}" 36EXTRA_OECONF = "${@bb.utils.contains('MACHINE_FEATURES', 'x86', '--disable-optimizations', '', d)}"
37 37
38do_configure() { 38do_configure() {
39 ./configure ${EXTRA_OECONF} 39 ./configure ${EXTRA_OECONF} ${PACKAGECONFIG_CONFARGS}
40} 40}
41 41
42do_install() { 42do_install() {