diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-23 20:00:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-23 21:38:47 +0100 |
commit | fdc949154e64afb41dd4db3a97be74a15963128d (patch) | |
tree | 1a46e5eb5ddb651f65817cc50949902b080fe7fa /meta/classes/systemd.bbclass | |
parent | 7743a309017f0fb9286f00b1f6f546ee95c05303 (diff) | |
download | openembedded-core-fdc949154e64afb41dd4db3a97be74a15963128d.tar.gz openembedded-core-fdc949154e64afb41dd4db3a97be74a15963128d.tar.bz2 openembedded-core-fdc949154e64afb41dd4db3a97be74a15963128d.zip |
update-rc.d/systemd: Remove OVERRIDES dependency
Taking run-postinsts and building for two machines which have different
OVERRIDES leads to two different sets of stamps for an allarch package.
We don't need to depend on OVERRIDES in these classes, the end resulting
variables are good enough. We can therefore exclude the dependency
and allow a single package to be generated for run-postinsts.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/systemd.bbclass')
-rw-r--r-- | meta/classes/systemd.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/systemd.bbclass b/meta/classes/systemd.bbclass index a6ad723dfd..708ba892bd 100644 --- a/meta/classes/systemd.bbclass +++ b/meta/classes/systemd.bbclass @@ -55,6 +55,8 @@ fi systemd_populate_packages[vardeps] += "systemd_prerm systemd_postinst" +systemd_populate_packages[vardepsexclude] += "OVERRIDES" + python systemd_populate_packages() { if not bb.utils.contains('DISTRO_FEATURES', 'systemd', True, False, d): |