diff options
author | André Draszik <andre.draszik@jci.com> | 2018-05-22 13:25:53 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-16 22:38:20 +0100 |
commit | b7edc20cc2dd82989bd9561f860cb25478a40f69 (patch) | |
tree | b12b94a23c63dc8416e2a04f77272df7ea773b55 | |
parent | 11e7dc96e7bc9d1cbf1f3bd10caeb65190c41a2f (diff) | |
download | openembedded-core-b7edc20cc2dd82989bd9561f860cb25478a40f69.tar.gz openembedded-core-b7edc20cc2dd82989bd9561f860cb25478a40f69.tar.bz2 openembedded-core-b7edc20cc2dd82989bd9561f860cb25478a40f69.zip |
sstate: Avoid indirect bison-native dependencies (via SSTATE_EXCLUDEDEPS_SYSROOT)
Avoid adding bison-native to the sysroot without a specific
dependency in the recipe. This means indirect dependencies
(e.g. X -> Y -> binutils-cross -> bison-native) no longer meet the
dependency incidentally. This improves determinism and avoids build
failures when people switch to external toolchains.
Based on an idea by Richard Purdie:
http://lists.openembedded.org/pipermail/openembedded-core/2018-January/146324.html
Signed-off-by: André Draszik <andre.draszik@jci.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/layer.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index 0a8f8ed9eb..cc77d078a8 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf @@ -78,6 +78,12 @@ SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \ weston-init->kbd \ " +# Avoid adding bison-native to the sysroot without a specific +# dependency in the recipe. This means indirect dependencies +# (e.g. X -> Y -> binutils-cross -> bison-native) no longer meet the +# dependency incidentally. This improves determinism and avoids build +# failures when people switch to external toolchains. +SSTATE_EXCLUDEDEPS_SYSROOT += ".*->bison-native" # Nothing needs to depend on libc-initial/gcc-cross-initial # base-passwd/shadow-sysroot don't need their dependencies SSTATE_EXCLUDEDEPS_SYSROOT += "\ |