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>
This commit is contained in:
Gyorgy Sarvari 2025-03-12 12:45:50 +01:00 committed by Khem Raj
parent d21f1f526a
commit ec71a3c7d1
No known key found for this signature in database
GPG Key ID: BB053355919D3314

View File

@ -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() {