diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-04 13:09:11 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-05 14:24:43 +0000 |
commit | 6ab56c54f316154d89f03ec0c6c2cb39d1736cff (patch) | |
tree | 952d5bde1c81457378d6d995051cd04674dbf489 /meta/classes/update-rc.d.bbclass | |
parent | 82233cd647b1ecc256afb0c3378906cf8af46f8e (diff) | |
download | poky-6ab56c54f316154d89f03ec0c6c2cb39d1736cff.tar.gz |
classes/recipes: More optimal DISTRO_FEATURES references
Using the contains function results in more optimal sstate checksums
resulting in better cache reuse as we as more consistent code.
(From OE-Core rev: 9c93526756e7cbbff027c88eb972f877bcb1f057)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/update-rc.d.bbclass')
-rw-r--r-- | meta/classes/update-rc.d.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/update-rc.d.bbclass b/meta/classes/update-rc.d.bbclass index 29b5a8ea27..c9bf04c4f8 100644 --- a/meta/classes/update-rc.d.bbclass +++ b/meta/classes/update-rc.d.bbclass | |||
@@ -105,7 +105,7 @@ python populate_packages_updatercd () { | |||
105 | 105 | ||
106 | # Check that this class isn't being inhibited (generally, by | 106 | # Check that this class isn't being inhibited (generally, by |
107 | # systemd.bbclass) before doing any work. | 107 | # systemd.bbclass) before doing any work. |
108 | if "sysvinit" in d.getVar("DISTRO_FEATURES").split() or \ | 108 | if oe.utils.contains('DISTRO_FEATURES', 'sysvinit', True, False, d) or \ |
109 | not d.getVar("INHIBIT_UPDATERCD_BBCLASS", True): | 109 | not d.getVar("INHIBIT_UPDATERCD_BBCLASS", True): |
110 | pkgs = d.getVar('INITSCRIPT_PACKAGES', True) | 110 | pkgs = d.getVar('INITSCRIPT_PACKAGES', True) |
111 | if pkgs == None: | 111 | if pkgs == None: |