diff options
author | Ming Liu <peter.x.liu@external.atlascopco.com> | 2015-11-13 14:00:17 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-16 09:03:28 +0000 |
commit | a6426479f6348524a904ba28c16c1e3c8793cb08 (patch) | |
tree | ae0c816c80ced40a508a72558009ad12cd42f02e /meta/classes/sstate.bbclass | |
parent | f78664219503cc176ca1c10a4397ca8a2883eb71 (diff) | |
download | openembedded-core-a6426479f6348524a904ba28c16c1e3c8793cb08.tar.gz openembedded-core-a6426479f6348524a904ba28c16c1e3c8793cb08.tar.bz2 openembedded-core-a6426479f6348524a904ba28c16c1e3c8793cb08.zip |
sstate: Add ca-certificates-native to postinst recipes list
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r-- | meta/classes/sstate.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 997d55baab..a6cda6c34f 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -847,7 +847,7 @@ def setscene_depvalid(task, taskdependees, notneeded, d): return x.endswith("-native") or "-cross-" in x or "-crosssdk" in x def isPostInstDep(x): - if x in ["qemu-native", "gdk-pixbuf-native", "qemuwrapper-cross", "depmodwrapper-cross", "systemd-systemctl-native", "gtk-icon-utils-native"]: + if x in ["qemu-native", "gdk-pixbuf-native", "qemuwrapper-cross", "depmodwrapper-cross", "systemd-systemctl-native", "gtk-icon-utils-native", "ca-certificates-native"]: return True return False |