diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-16 21:50:28 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-16 22:15:22 +0100 |
commit | 5e8993632e48e83aa4bab90363506b9d5f7a468f (patch) | |
tree | 8836fb4de6092c870a3bb97787a456ea04b73ad6 /meta | |
parent | bf74a002b8fa18d94cec93f0341cbe74cc010ca7 (diff) | |
download | openembedded-core-5e8993632e48e83aa4bab90363506b9d5f7a468f.tar.gz openembedded-core-5e8993632e48e83aa4bab90363506b9d5f7a468f.tar.bz2 openembedded-core-5e8993632e48e83aa4bab90363506b9d5f7a468f.zip |
glibc: Ensure OVERRIDES doesn't influence sstate checksum
Switching MACHINE was causing nativesdk-glibc to rebuild. This was
from the use of OVERRIDES in one of the functions. Exclude OVERRIDES
from the checksum to avoid this.
[patch to oe-selftest to ensure this doesn't regress follows]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/glibc/glibc-ld.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/glibc/glibc-ld.inc b/meta/recipes-core/glibc/glibc-ld.inc index 962d666885..c5f4db2297 100644 --- a/meta/recipes-core/glibc/glibc-ld.inc +++ b/meta/recipes-core/glibc/glibc-ld.inc @@ -54,3 +54,4 @@ def glibc_dl_info(d): EGLIBC_KNOWN_INTERPRETER_NAMES = "${@glibc_dl_info(d)['ldconfig']}" RTLDLIST = "${@glibc_dl_info(d)['lddrewrite']}" +glibc_dl_info[vardepsexclude] = "OVERRIDES" |