From: Richard Purdie Date: Thu, 1 May 2014 14:40:40 +0000 (+0100) Subject: layer.conf: Exclude gcc-cross dependencies from checksums X-Git-Tag: yocto-4.0~29317 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=97df4e8e61a7693d548c3145e36f1d5503e91d03;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git layer.conf: Exclude gcc-cross dependencies from checksums gcc-cross technically depends on the C library however we can use one toolchain for multiple different tunes within a given architecture. Manually remove these dependencies so that gcc-cross isn't rebuild with every tune change. Signed-off-by: Richard Purdie --- diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index 18609ddc5c4..dbcb65326ba 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf @@ -31,3 +31,10 @@ SIGGEN_EXCLUDERECIPES_ABISAFE += " \ packagegroup-x11-xserver \ systemd-serialgetty \ " + +SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \ + gcc-cross-${TARGET_ARCH}->eglibc \ + gcc-cross-${TARGET_ARCH}->uclibc \ + gcc-cross-${TARGET_ARCH}->linux-libc-headers \ +" +