diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2016-10-19 17:31:57 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-28 16:15:19 +0100 |
commit | 98e9845e3171e4352849cca0968d70e238d3c38c (patch) | |
tree | 39eca74a1a75a0b3167a2753d7082aeb3f3e050b /scripts/sstate-sysroot-cruft.sh | |
parent | d7affc5dfa6bd802620fbc1b3cbd7e49c119b876 (diff) | |
download | poky-98e9845e3171e4352849cca0968d70e238d3c38c.tar.gz |
sstate-sysroot-cruft: Add /etc/ld.so.conf to whitelist
* it reports at least 2 issues in every build (this file in
native and target sysroot) add it to whitelist
(From OE-Core rev: 798107887294072cacb23b668f446e151fe3c35f)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/sstate-sysroot-cruft.sh')
-rwxr-xr-x | scripts/sstate-sysroot-cruft.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/sstate-sysroot-cruft.sh b/scripts/sstate-sysroot-cruft.sh index b7ed8ea846..b6166aa1b2 100755 --- a/scripts/sstate-sysroot-cruft.sh +++ b/scripts/sstate-sysroot-cruft.sh | |||
@@ -141,6 +141,18 @@ WHITELIST="${WHITELIST} \ | |||
141 | .*/var/cache/fontconfig/ \ | 141 | .*/var/cache/fontconfig/ \ |
142 | " | 142 | " |
143 | 143 | ||
144 | # created by oe.utils.write_ld_so_conf which is used from few bbclasses and recipes: | ||
145 | # meta/classes/image-prelink.bbclass: oe.utils.write_ld_so_conf(d) | ||
146 | # meta/classes/insane.bbclass: oe.utils.write_ld_so_conf(d) | ||
147 | # meta/classes/insane.bbclass: oe.utils.write_ld_so_conf(d) | ||
148 | # meta/recipes-gnome/gobject-introspection/gobject-introspection_1.48.0.bb: oe.utils.write_ld_so_conf(d) | ||
149 | # meta/recipes-gnome/gobject-introspection/gobject-introspection_1.48.0.bb: oe.utils.write_ld_so_conf(d) | ||
150 | # introduced in oe-core commit 7fd1d7e639c2ed7e0699937a5cb245c187b7c811 | ||
151 | # and more visible since added to gobject-introspection in 10e0c1a3a452baa05d160a92a54b2e33cf0fd061 | ||
152 | WHITELIST="${WHITELIST} \ | ||
153 | [^/]*/etc/ld.so.conf \ | ||
154 | " | ||
155 | |||
144 | SYSROOTS="`readlink -f ${tmpdir}`/sysroots/" | 156 | SYSROOTS="`readlink -f ${tmpdir}`/sysroots/" |
145 | 157 | ||
146 | mkdir ${OUTPUT} | 158 | mkdir ${OUTPUT} |