summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/psmisc/psmisc.inc
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-28 23:28:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-02 15:44:10 +0100
commitbb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch)
tree76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-extended/psmisc/psmisc.inc
parentfcc456ee4b8f619134abb4649db53c638074082c (diff)
downloadpoky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz
Convert to new override syntax
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/psmisc/psmisc.inc')
-rw-r--r--meta/recipes-extended/psmisc/psmisc.inc28
1 files changed, 14 insertions, 14 deletions
diff --git a/meta/recipes-extended/psmisc/psmisc.inc b/meta/recipes-extended/psmisc/psmisc.inc
index 6ab1288152..ad6263ed94 100644
--- a/meta/recipes-extended/psmisc/psmisc.inc
+++ b/meta/recipes-extended/psmisc/psmisc.inc
@@ -19,7 +19,7 @@ inherit autotools gettext
19# Upstream has a custom autogen.sh which invokes po/update-potfiles as they 19# Upstream has a custom autogen.sh which invokes po/update-potfiles as they
20# don't ship a po/POTFILES.in (which is silly). Without that file gettext 20# don't ship a po/POTFILES.in (which is silly). Without that file gettext
21# doesn't believe po/ is a gettext directory and won't generate po/Makefile. 21# doesn't believe po/ is a gettext directory and won't generate po/Makefile.
22do_configure_prepend() { 22do_configure:prepend() {
23 ( cd ${S} && po/update-potfiles ) 23 ( cd ${S} && po/update-potfiles )
24} 24}
25 25
@@ -27,30 +27,30 @@ do_configure_prepend() {
27PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}" 27PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}"
28PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6," 28PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
29 29
30ALLOW_EMPTY_${PN} = "1" 30ALLOW_EMPTY:${PN} = "1"
31 31
32PACKAGES =+ "fuser fuser-doc killall killall-doc pstree pstree-doc" 32PACKAGES =+ "fuser fuser-doc killall killall-doc pstree pstree-doc"
33PACKAGES += "psmisc-extras" 33PACKAGES += "psmisc-extras"
34 34
35FILES_${PN} = "" 35FILES:${PN} = ""
36RDEPENDS_${PN} = "fuser killall pstree" 36RDEPENDS:${PN} = "fuser killall pstree"
37 37
38FILES_fuser = "${bindir}/fuser.${BPN}" 38FILES:fuser = "${bindir}/fuser.${BPN}"
39FILES_fuser-doc = "${mandir}/man1/fuser*" 39FILES:fuser-doc = "${mandir}/man1/fuser*"
40 40
41FILES_killall = "${bindir}/killall.${BPN}" 41FILES:killall = "${bindir}/killall.${BPN}"
42FILES_killall-doc = "${mandir}/man1/killall*" 42FILES:killall-doc = "${mandir}/man1/killall*"
43 43
44FILES_pstree = "${bindir}/pstree" 44FILES:pstree = "${bindir}/pstree"
45FILES_pstree-doc = "${mandir}/man1/pstree*" 45FILES:pstree-doc = "${mandir}/man1/pstree*"
46 46
47FILES_psmisc-extras = "${bindir}" 47FILES:psmisc-extras = "${bindir}"
48FILES_psmisc-extras-doc = "${mandir}" 48FILES:psmisc-extras-doc = "${mandir}"
49 49
50inherit update-alternatives 50inherit update-alternatives
51 51
52ALTERNATIVE_PRIORITY = "90" 52ALTERNATIVE_PRIORITY = "90"
53 53
54ALTERNATIVE_killall = "killall" 54ALTERNATIVE:killall = "killall"
55 55
56ALTERNATIVE_fuser = "fuser" 56ALTERNATIVE:fuser = "fuser"