diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2014-09-15 15:47:21 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-29 12:12:44 +0100 |
commit | 3028c8efedc167ddc92c9a6b05914a1a00960764 (patch) | |
tree | 45d5eb8b17e8f1092f99382fccd8f221d89f6c27 /meta | |
parent | dc7394012a7e1e6a2464721cbda0e5ce628b4f87 (diff) | |
download | ast2050-yocto-poky-3028c8efedc167ddc92c9a6b05914a1a00960764.zip ast2050-yocto-poky-3028c8efedc167ddc92c9a6b05914a1a00960764.tar.gz |
volatile-binds: use ${PN} for SYSTEMD_SERVICE
As this recipe inherits allarch, it makes no real difference whether
we are using ${PN} or 'volatile-binds'. But using ${PN} would keep
the same style with the other recipes in OE.
(From OE-Core rev: 708cc039b6cc891e466e89d2b10fcdea6c19287c)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/volatile-binds/volatile-binds.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/volatile-binds/volatile-binds.bb b/meta/recipes-core/volatile-binds/volatile-binds.bb index 4080ff7..694ba1e 100644 --- a/meta/recipes-core/volatile-binds/volatile-binds.bb +++ b/meta/recipes-core/volatile-binds/volatile-binds.bb @@ -28,7 +28,7 @@ def volatile_systemd_services(d): services.append("%s.service" % what[1:].replace("/", "-")) return " ".join(services) -SYSTEMD_SERVICE_volatile-binds = "${@volatile_systemd_services(d)}" +SYSTEMD_SERVICE_${PN} = "${@volatile_systemd_services(d)}" FILES_${PN} += "${systemd_unitdir}/system/*.service" |