diff mbox series

[meta-oe] fio: pass pkgconf args to configure script

Message ID 20250312114550.3239004-1-skandigraun@gmail.com
State Under Review
Headers show
Series [meta-oe] fio: pass pkgconf args to configure script | expand

Commit Message

Gyorgy Sarvari March 12, 2025, 11:45 a.m. UTC
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>
---
 meta-oe/recipes-benchmark/fio/fio_3.39.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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}'"
 EXTRA_OECONF = "${@bb.utils.contains('MACHINE_FEATURES', 'x86', '--disable-optimizations', '', d)}"
 
 do_configure() {
-    ./configure ${EXTRA_OECONF}
+    ./configure ${EXTRA_OECONF} ${PACKAGECONFIG_CONFARGS}
 }
 
 do_install() {