summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonatan Pålsson <jonatan.p@gmail.com>2020-08-21 10:03:50 +0200
committerRichard Leitner <richard.leitner@skidata.com>2020-10-22 08:42:46 +0200
commit62d6c0653ad69e14c21db2d4482e578400116a1b (patch)
treec18ac80afff835033e0cf8b684b8c82a94400a1c
parent488e7f9e191790b54adeb3f4b968ae27d50c9f33 (diff)
downloadmeta-java-62d6c0653ad69e14c21db2d4482e578400116a1b.tar.gz
openjdk-8-native: Don't warn for stripped libfreetype.so.6
Mimic the approach used in openjdk-8-cross.inc and add INSANE_SKIP for "already-skipped" to avoid the following warning: WARNING: openjdk-8-native-252-r0 do_populate_sysroot: File '..snip../libfreetype.so.6' from openjdk-8-native was already stripped, this will prevent future debugging! Signed-off-by: Jonatan Pålsson <jonatan.p@gmail.com> Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
-rw-r--r--recipes-core/openjdk/openjdk-8-native.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes-core/openjdk/openjdk-8-native.inc b/recipes-core/openjdk/openjdk-8-native.inc
index 24b6f20..92d9473 100644
--- a/recipes-core/openjdk/openjdk-8-native.inc
+++ b/recipes-core/openjdk/openjdk-8-native.inc
@@ -88,3 +88,6 @@ do_install() {
88 ln -sf "../lib/jvm/${JDK_DIR}/bin/$tool" ${D}${bindir}/$tool 88 ln -sf "../lib/jvm/${JDK_DIR}/bin/$tool" ${D}${bindir}/$tool
89 done 89 done
90} 90}
91
92# FIXME libfreetype.so.6 is copied from STAGING_LIBDIR which is already stripped
93INSANE_SKIP_${PN} = "already-stripped"