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:04:23 +0000 |
commit | 14e93850be645f3f3b9112f0ee1c605514c31f0c (patch) | |
tree | 728273c7aac2859051cf853a0a309fb2a9455918 /meta/classes | |
parent | 73e53e453ecfe3565720c7201b8c0b3fc92759cd (diff) | |
download | poky-14e93850be645f3f3b9112f0ee1c605514c31f0c.tar.gz |
sstate: Add ca-certificates-native to postinst recipes list
(From OE-Core rev: a6426479f6348524a904ba28c16c1e3c8793cb08)
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')
-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): | |||
847 | return x.endswith("-native") or "-cross-" in x or "-crosssdk" in x | 847 | return x.endswith("-native") or "-cross-" in x or "-crosssdk" in x |
848 | 848 | ||
849 | def isPostInstDep(x): | 849 | def isPostInstDep(x): |
850 | if x in ["qemu-native", "gdk-pixbuf-native", "qemuwrapper-cross", "depmodwrapper-cross", "systemd-systemctl-native", "gtk-icon-utils-native"]: | 850 | if x in ["qemu-native", "gdk-pixbuf-native", "qemuwrapper-cross", "depmodwrapper-cross", "systemd-systemctl-native", "gtk-icon-utils-native", "ca-certificates-native"]: |
851 | return True | 851 | return True |
852 | return False | 852 | return False |
853 | 853 | ||