mirror of
https://git.yoctoproject.org/poky
synced 2026-06-04 02:00:04 +00:00
meta: convert nested overrides leftovers to new syntax
Those were missed in previous rounds of automated and manual conversion. (From OE-Core rev: 22f9c7268b542baf6cd8aa0e34c8fb7aa1579e08) Signed-off-by: Denys Dmytriyenko <denis@denix.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
4875b8989b
commit
fdf57744b4
@@ -12,7 +12,7 @@ MAN_PKG ?= "${PN}-doc"
|
||||
# only add man-db to RDEPENDS when manual files are built and installed
|
||||
RDEPENDS:${MAN_PKG} += "${@bb.utils.contains('PACKAGECONFIG', 'manpages', 'man-db', '', d)}"
|
||||
|
||||
pkg_postinst:append_${MAN_PKG} () {
|
||||
pkg_postinst:append:${MAN_PKG} () {
|
||||
# only update manual page index caches when manual files are built and installed
|
||||
if ${@bb.utils.contains('PACKAGECONFIG', 'manpages', 'true', 'false', d)}; then
|
||||
if test -n "$D"; then
|
||||
@@ -36,7 +36,7 @@ pkg_postinst:append_${MAN_PKG} () {
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postrm:append_${MAN_PKG} () {
|
||||
pkg_postrm:append:${MAN_PKG} () {
|
||||
# only update manual page index caches when manual files are built and installed
|
||||
if ${@bb.utils.contains('PACKAGECONFIG', 'manpages', 'true', 'false', d)}; then
|
||||
mandb -q
|
||||
|
||||
Reference in New Issue
Block a user