[oe-commits] [openembedded-core] 16/17: sstate: Avoid indirect autoconf-archive-native dependencies

git at git.openembedded.org git at git.openembedded.org
Tue Aug 21 08:16:13 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit d50ad4899579c9ea464b6e7bc7e69d121c2ab838
Author: Changqing Li <changqing.li at windriver.com>
AuthorDate: Tue Aug 21 09:30:18 2018 +0800

    sstate: Avoid indirect autoconf-archive-native dependencies
    
    remove the indirect dependcy of autoconf-archive-native via
    SSTATE_EXCLUDEDEPS_SYSROOT to avoid not needed .m4 installed
    into sysroot, which may cause compile problem.
    
    Signed-off-by: Changqing Li <changqing.li at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/conf/layer.conf | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf
index cc77d07..2cbe952 100644
--- a/meta/conf/layer.conf
+++ b/meta/conf/layer.conf
@@ -90,6 +90,9 @@ SSTATE_EXCLUDEDEPS_SYSROOT += "\
     .*->.*-initial.* \
     .*(base-passwd|shadow-sysroot)->.* \
 "
+# Avoid adding autoconf-archive-native to sysroot without a specific
+# dependency in the recipe.
+SSTATE_EXCLUDEDEPS_SYSROOT += ".*->autoconf-archive-native"
 
 # We need to keep bitbake tools in PATH
 PATH := "${@os.path.dirname(bb.utils.which(d.getVar('PATH'),'bitbake'))}:${HOSTTOOLS_DIR}"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list