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:40:35 +0100 |
commit | d4a7a1b2d6bee1b6578cc7b56b6ca730ea453144 (patch) | |
tree | eb58e8fabcac72eb0a492f52ccf232f843186ce9 | |
parent | ea872b735c92a30d03cfa32953e060430e6f7f0b (diff) | |
download | openembedded-core-contrib-d4a7a1b2d6bee1b6578cc7b56b6ca730ea453144.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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 9e800181c4b..1a2f4d550a8 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf @@ -41,9 +41,7 @@ SIGGEN_EXCLUDERECIPES_ABISAFE += " \ " SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \ - gcc-cross-${TARGET_ARCH}->glibc \ - gcc-cross-${TARGET_ARCH}->musl \ - gcc-cross-${TARGET_ARCH}->uclibc \ + gcc-cross-${TARGET_ARCH}->virtual/libc \ gcc-cross-${TARGET_ARCH}->linux-libc-headers \ ppp-dialin->ppp \ resolvconf->bash \ |