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/recipes-extended/at | |
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/recipes-extended/at')
-rw-r--r-- | meta/recipes-extended/at/at_3.1.14.bb | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/meta/recipes-extended/at/at_3.1.14.bb b/meta/recipes-extended/at/at_3.1.14.bb index f80b620e68..166a2a5804 100644 --- a/meta/recipes-extended/at/at_3.1.14.bb +++ b/meta/recipes-extended/at/at_3.1.14.bb | |||
@@ -54,10 +54,7 @@ do_install () { | |||
54 | install -m 0755 ${WORKDIR}/S99at ${D}${sysconfdir}/init.d/atd | 54 | install -m 0755 ${WORKDIR}/S99at ${D}${sysconfdir}/init.d/atd |
55 | ln -sf ../init.d/atd ${D}${sysconfdir}/rcS.d/S99at | 55 | ln -sf ../init.d/atd ${D}${sysconfdir}/rcS.d/S99at |
56 | 56 | ||
57 | for feature in ${DISTRO_FEATURES}; do | 57 | if [ "${@base_contains('DISTRO_FEATURES', 'pam', 'pam', '', d)}" = "pam" ]; then |
58 | if [ "$feature" = "pam" ]; then | 58 | install -D -m 0644 ${WORKDIR}/${BP}/pam.conf ${D}${sysconfdir}/pam.d/atd |
59 | install -D -m 0644 ${WORKDIR}/${BP}/pam.conf ${D}${sysconfdir}/pam.d/atd | 59 | fi |
60 | break | ||
61 | fi | ||
62 | done | ||
63 | } | 60 | } |