diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2017-08-18 03:31:52 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-18 23:46:37 +0100 |
commit | 6cf439d4c26f2dea021528dc4159955b73bcb3dd (patch) | |
tree | 8a66ddc6cf10f7ba70c891a4c6c3297e1cb524b0 | |
parent | 0390b0975e24158755e41060646eb4c4fe367a1e (diff) | |
download | poky-6cf439d4c26f2dea021528dc4159955b73bcb3dd.tar.gz |
logrotate: fix systemd service not found while multilib
...
|ERROR: lib32-logrotate-3.12.3-r0 do_package: SYSTEMD_SERVICE_lib32-logrotate
value lib32-logrotate.service does not exist
|ERROR: lib32-logrotate-3.12.3-r0 do_package: Function failed:
systemd_populate_packages
...
The systemd sercie file should not be multilib expend.
(From OE-Core rev: e599c3d75a0e57a798ca360eb55d8661de355ec5)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/logrotate/logrotate_3.12.3.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/logrotate/logrotate_3.12.3.bb b/meta/recipes-extended/logrotate/logrotate_3.12.3.bb index 05705bedbe..05c2ef1c28 100644 --- a/meta/recipes-extended/logrotate/logrotate_3.12.3.bb +++ b/meta/recipes-extended/logrotate/logrotate_3.12.3.bb | |||
@@ -56,8 +56,8 @@ OS_NAME = "Linux" | |||
56 | inherit autotools systemd | 56 | inherit autotools systemd |
57 | 57 | ||
58 | SYSTEMD_SERVICE_${PN} = "\ | 58 | SYSTEMD_SERVICE_${PN} = "\ |
59 | ${PN}.service \ | 59 | ${BPN}.service \ |
60 | ${PN}.timer \ | 60 | ${BPN}.timer \ |
61 | " | 61 | " |
62 | 62 | ||
63 | LOGROTATE_SYSTEMD_TIMER_BASIS ?= "daily" | 63 | LOGROTATE_SYSTEMD_TIMER_BASIS ?= "daily" |