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:11:49 +0100 |
commit | 708cc039b6cc891e466e89d2b10fcdea6c19287c (patch) | |
tree | 11e9b698e07f71f8e404d904f9fccf91419b13a1 /meta/recipes-core/volatile-binds | |
parent | f8217853c69cf06c92b2f3885f7d49851213188f (diff) | |
download | openembedded-core-708cc039b6cc891e466e89d2b10fcdea6c19287c.tar.gz openembedded-core-708cc039b6cc891e466e89d2b10fcdea6c19287c.tar.bz2 openembedded-core-708cc039b6cc891e466e89d2b10fcdea6c19287c.zip |
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.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-core/volatile-binds')
-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 4080ff7ef2..694ba1e487 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" |