summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorhongxu <hongxu.jia@windriver.com>2020-08-27 18:46:10 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-02 16:00:46 +0100
commit5128b72d30ee4e448d38c9cec0d795043ff3bfa0 (patch)
tree2674ee3764c930a8e48b1b7a14faf3d7ada701c5 /meta/recipes-extended
parent104ff3c834d9ea60de4600fca374c0bdc9ca843d (diff)
downloadpoky-5128b72d30ee4e448d38c9cec0d795043ff3bfa0.tar.gz
sysstat: fix installed-vs-shipped QA Issue in systemd
While enabling systemd, there is QA issue: ... |ERROR: sysstat-12.4.0-r0 do_package: QA Issue: sysstat: Files/directories were installed but not shipped in any package: | /lib/systemd/system-sleep | /lib/systemd/system-sleep/sysstat.sleep ... https://www.freedesktop.org/software/systemd/man/systemd-sleep.html says the files should be dropped into /usr/lib/systemd/system-sleep (that would be /lib/systemd/system-sleep in our configuration). By moving the files to another directory they'll be packaged but not loaded by systemd. Suggested-by Ross Burton <ross@burtonini.com> (From OE-Core rev: 3bdd40ea09e50067f11c12290ab465a9ef229fc4) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r--meta/recipes-extended/sysstat/sysstat.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/sysstat/sysstat.inc b/meta/recipes-extended/sysstat/sysstat.inc
index 8fd87b943b..e5e134c038 100644
--- a/meta/recipes-extended/sysstat/sysstat.inc
+++ b/meta/recipes-extended/sysstat/sysstat.inc
@@ -62,6 +62,6 @@ pkg_postinst_${PN} () {
62 fi 62 fi
63} 63}
64 64
65FILES_${PN} += "${systemd_system_unitdir}" 65FILES_${PN} += "${systemd_system_unitdir} ${nonarch_base_libdir}/systemd"
66 66
67TARGET_CC_ARCH += "${LDFLAGS}" 67TARGET_CC_ARCH += "${LDFLAGS}"