diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-30 14:51:25 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-01 07:43:36 +0100 |
commit | f4a891717ee3a37814039b777061acdcc962bac9 (patch) | |
tree | 0a26f3a6664f974a8bca1a804ebf4c7957ef1642 /meta/conf | |
parent | 6fe4fd234f779c29f1c47f3c0aa5d0f573caa3cc (diff) | |
download | poky-f4a891717ee3a37814039b777061acdcc962bac9.tar.gz |
layer.conf: Improve siggen exclusion to handle virtual/libc
Now the system supports virtual/xxx in SIGGEN_ variables, convert
this one to use virtual/libc instead of the hardcoded expansion which
is error prone.
(From OE-Core rev: d4a7a1b2d6bee1b6578cc7b56b6ca730ea453144)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/layer.conf | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index 9e800181c4..1a2f4d550a 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf | |||
@@ -41,9 +41,7 @@ SIGGEN_EXCLUDERECIPES_ABISAFE += " \ | |||
41 | " | 41 | " |
42 | 42 | ||
43 | SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \ | 43 | SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \ |
44 | gcc-cross-${TARGET_ARCH}->glibc \ | 44 | gcc-cross-${TARGET_ARCH}->virtual/libc \ |
45 | gcc-cross-${TARGET_ARCH}->musl \ | ||
46 | gcc-cross-${TARGET_ARCH}->uclibc \ | ||
47 | gcc-cross-${TARGET_ARCH}->linux-libc-headers \ | 45 | gcc-cross-${TARGET_ARCH}->linux-libc-headers \ |
48 | ppp-dialin->ppp \ | 46 | ppp-dialin->ppp \ |
49 | resolvconf->bash \ | 47 | resolvconf->bash \ |