mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 01:19:52 +00:00
systemd: Remove systemd_unitdir if systemd is not in distro features
If systemd is not supported DISTRO_FEATURE than there is no need to package related service files. (From OE-Core rev: ac5d20f4adac69ea1702694fb50849c9e465b443) Signed-off-by: Muhammad Shakeel <muhammad_shakeel@mentor.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
c39bd6971a
commit
67864ca79d
@@ -161,3 +161,12 @@ python systemd_populate_packages() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
PACKAGESPLITFUNCS_prepend = "systemd_populate_packages "
|
PACKAGESPLITFUNCS_prepend = "systemd_populate_packages "
|
||||||
|
|
||||||
|
python rm_systemd_unitdir (){
|
||||||
|
import shutil
|
||||||
|
if "systemd" not in d.getVar("DISTRO_FEATURES", True).split():
|
||||||
|
systemd_unitdir = oe.path.join(d.getVar("D", True), d.getVar('systemd_unitdir', True))
|
||||||
|
if os.path.exists(systemd_unitdir):
|
||||||
|
shutil.rmtree(systemd_unitdir)
|
||||||
|
}
|
||||||
|
do_install[postfuncs] += "rm_systemd_unitdir "
|
||||||
|
|||||||
Reference in New Issue
Block a user