systemd.bbclass: fix regression caused by c9f5703ade

The parsing condition was broken causing the packages not being
expanded to include <PN>-systemd packages automatically.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
Otavio Salvador 2012-02-25 02:31:28 +00:00 committed by Koen Kooi
parent c9f5703ade
commit 504f2e084c

View File

@ -28,6 +28,9 @@ systemctl disable ${SYSTEMD_SERVICE}
def systemd_after_parse(d):
def systemd_check_vars():
if d.getVar('BB_WORKERCONTEXT', True) is not None:
return
bb_filename = d.getVar('FILE')
packages = d.getVar('PACKAGES', 1)
@ -66,11 +69,9 @@ def systemd_after_parse(d):
bpn = d.getVar('BPN', 1)
# not for native / only at parse time
if d.getVar('BB_WORKERCONTEXT', True) is None and \
bpn + "-native" != d.getVar('PN', 1) and \
bpn + "-cross" != d.getVar('PN', 1) and \
bpn + "-nativesdk" != d.getVar('PN', 1):
if bpn + "-native" != d.getVar('PN', 1) and \
bpn + "-cross" != d.getVar('PN', 1) and \
bpn + "-nativesdk" != d.getVar('PN', 1):
systemd_check_vars()
for pkg_systemd in d.getVar('SYSTEMD_PACKAGES', 1).split():
systemd_create_package(pkg_systemd)