Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,5 @@ require corretto-bin-common.inc
do_package_qa[noexec] = "1"
EXCLUDE_FROM_SHLIBS = "1"

# nooelint: oelint.vars.dependsordered
RDEPENDS:${PN} += "\
cairo \
gtk+ \
libgl \
pango \
"

# this is used by meta-aws-tests to find this recipe for ptests, so it should stay in this file instead of moving into corretto-bin-common
inherit ptest
8 changes: 4 additions & 4 deletions recipes-devtools/amazon-corretto/corretto-bin-common.inc
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ RDEPENDS:${PN} += "\

do_install:append() {
if ${@bb.utils.contains('DISTRO_FEATURES','x11','false','true',d)}; then
rm ${D}${libdir}/${SHR}/lib/libawt_xawt.so
rm ${D}${libdir}/${SHR}/lib/libjawt.so
rm ${D}${libdir}/${SHR}/lib/libsplashscreen.so
rm -f ${D}${libdir}/${SHR}/lib/libawt_xawt.so
rm -f ${D}${libdir}/${SHR}/lib/libjawt.so
rm -f ${D}${libdir}/${SHR}/lib/libsplashscreen.so
fi
if ${@bb.utils.contains('DISTRO_FEATURES','alsa','false','true',d)}; then
rm ${D}${libdir}/${SHR}/lib/libjsound.so
rm -f ${D}${libdir}/${SHR}/lib/libjsound.so
fi
}

Expand Down
Loading