diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-01 15:40:40 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-02 20:46:58 +0100 |
commit | 37c498ad2bda71dc6aa4645e15afc98961221fda (patch) | |
tree | 7f3a3ff4c1ae5808ccef168d9bbf41e61fa3cf6c /meta/conf | |
parent | 96ce3f278c60e1ea5b56a805255ebfb80cbd1ff4 (diff) | |
download | poky-37c498ad2bda71dc6aa4645e15afc98961221fda.tar.gz |
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.
(From OE-Core rev: 97df4e8e61a7693d548c3145e36f1d5503e91d03)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/layer.conf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index 18609ddc5c..dbcb65326b 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf | |||
@@ -31,3 +31,10 @@ SIGGEN_EXCLUDERECIPES_ABISAFE += " \ | |||
31 | packagegroup-x11-xserver \ | 31 | packagegroup-x11-xserver \ |
32 | systemd-serialgetty \ | 32 | systemd-serialgetty \ |
33 | " | 33 | " |
34 | |||
35 | SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \ | ||
36 | gcc-cross-${TARGET_ARCH}->eglibc \ | ||
37 | gcc-cross-${TARGET_ARCH}->uclibc \ | ||
38 | gcc-cross-${TARGET_ARCH}->linux-libc-headers \ | ||
39 | " | ||
40 | |||