mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-16 16:03:05 +00:00
lirc: use weak assignment in PACKAGECONFIG like other recipes
* using append makes it harder to disable PACKAGECONFIGs set from DISTRO_FEATURES Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
parent
82c66f0957
commit
4821df058d
@ -22,8 +22,10 @@ inherit autotools pkgconfig systemd pythonnative
|
|||||||
PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,--without-systemdsystemunitdir,systemd"
|
PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,--without-systemdsystemunitdir,systemd"
|
||||||
PACKAGECONFIG[x11] = "--with-x,--with-x=no,libx11,"
|
PACKAGECONFIG[x11] = "--with-x,--with-x=no,libx11,"
|
||||||
|
|
||||||
PACKAGECONFIG_append = "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', ' systemd', '', d)}"
|
PACKAGECONFIG ?= " \
|
||||||
PACKAGECONFIG_append = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', ' x11', '', d)}"
|
${@bb.utils.contains('DISTRO_FEATURES', 'systemd', ' systemd', '', d)} \
|
||||||
|
${@bb.utils.contains('DISTRO_FEATURES', 'x11', ' x11', '', d)} \
|
||||||
|
"
|
||||||
|
|
||||||
#EXTRA_OEMAKE = 'SUBDIRS="lib daemons tools"'
|
#EXTRA_OEMAKE = 'SUBDIRS="lib daemons tools"'
|
||||||
do_install_append() {
|
do_install_append() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user