]> code.ossystems Code Review - openembedded-core.git/commitdiff
glibc: Ensure OVERRIDES doesn't influence sstate checksum
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 16 Sep 2015 20:50:28 +0000 (21:50 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 16 Sep 2015 21:15:22 +0000 (22:15 +0100)
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>
meta/recipes-core/glibc/glibc-ld.inc

index 962d66688508a9a00ee498ede6560d6a42af8c17..c5f4db2297cf718c3f89577ea487747c784d4c99 100644 (file)
@@ -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"