From: Joshua Watt Date: Tue, 27 Feb 2018 22:47:53 +0000 (-0600) Subject: sstatesig: Move hardcoded native tools X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~18670 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=891ca3c891f2ed5476442442bd9784ba10b9a94d;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git sstatesig: Move hardcoded native tools Now that SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS supports the wildcard syntax, these exclusions no longer need to be hardcoded Signed-off-by: Joshua Watt Signed-off-by: Richard Purdie --- diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index 67820588d37..df67716a2f1 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf @@ -44,6 +44,11 @@ SIGGEN_EXCLUDERECIPES_ABISAFE += " \ " SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \ + *->quilt-native \ + *->subversion-native \ + *->git-native \ + *->ccache-native \ + *->icecc-create-env-native \ gcc-cross-${TARGET_ARCH}->virtual/${TARGET_PREFIX}libc-for-gcc \ gcc-cross-${TARGET_ARCH}->linux-libc-headers \ ppp-dialin->ppp \ diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index beed45b74fd..b82e0f422ee 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py @@ -29,11 +29,6 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache): return False return True - # Quilt (patch application) changing isn't likely to affect anything - excludelist = ['quilt-native', 'subversion-native', 'git-native', 'ccache-native', 'icecc-create-env-native'] - if depname in excludelist and recipename != depname: - return False - # Exclude well defined recipe->dependency if "%s->%s" % (recipename, depname) in siggen.saferecipedeps: return False