mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-18 07:04:57 +00:00
lib32-rsyslog: fix wrong systemd server file
When enable multilib on x86-64, it fails to build lib32-rsyslog with
error:
| ERROR: Function failed: SYSTEMD_SERVICE_lib32-rsyslog value lib32-rsyslog.service does not exist
It uses wrong value ${PN}.service to set SYSTEMD_SERVICE. Correct it by
using BPN.
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
parent
d4ba54f15f
commit
3b50ee2fa6
@ -32,4 +32,4 @@ CONFFILES_${PN} = "${sysconfdir}/rsyslog.conf"
|
||||
RPROVIDES_${PN} += "${PN}-systemd"
|
||||
RREPLACES_${PN} += "${PN}-systemd"
|
||||
RCONFLICTS_${PN} += "${PN}-systemd"
|
||||
SYSTEMD_SERVICE_${PN} = "${PN}.service"
|
||||
SYSTEMD_SERVICE_${PN} = "${BPN}.service"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user