mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
meta-initramfs: use bb.utils.contains() instead of base_contains()
base_contains() is a compatibility wrapper and may warn in the future, so replace all instances with bb.utils.contains(). Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
committed by
Armin Kuster
parent
2e3d033cbf
commit
fe8fbf1895
@@ -27,7 +27,7 @@ EXTRA_OECONF = "--prefix=${prefix} \
|
|||||||
"
|
"
|
||||||
|
|
||||||
# RDEPEND on systemd optionally
|
# RDEPEND on systemd optionally
|
||||||
PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
|
PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
|
||||||
PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,,,systemd"
|
PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,,,systemd"
|
||||||
|
|
||||||
EXTRA_OEMAKE += 'libdir=${prefix}/lib'
|
EXTRA_OEMAKE += 'libdir=${prefix}/lib'
|
||||||
|
|||||||
Reference in New Issue
Block a user