summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2020-09-01 15:32:27 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-17 12:51:24 +0100
commitfef0b3bcdf9e7de6d6dc80e5f49797fe4d1138a7 (patch)
tree9fbd88afa687d64c793ed0bc0ca1cac065df0567
parent94b6af19ef73f77e1be56c492e3b279fbc667277 (diff)
downloadpoky-fef0b3bcdf9e7de6d6dc80e5f49797fe4d1138a7.tar.gz
rpcbind: Use update-alternatives for rpcinfo
rpcinfo is also provided vy netkit in meta-networking (From OE-Core rev: 177a82f0e9f9c7fa12dd39cbbdd2ac64d920699d) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 28183dfd7446de9113773ab89edd0afb4ab82f7e) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/rpcbind/rpcbind_1.2.5.bb5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-extended/rpcbind/rpcbind_1.2.5.bb b/meta/recipes-extended/rpcbind/rpcbind_1.2.5.bb
index aff00e56e6..ec8f9e48b2 100644
--- a/meta/recipes-extended/rpcbind/rpcbind_1.2.5.bb
+++ b/meta/recipes-extended/rpcbind/rpcbind_1.2.5.bb
@@ -19,7 +19,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/rpcbind/rpcbind-${PV}.tar.bz2 \
19SRC_URI[md5sum] = "ed46f09b9c0fa2d49015f6431bc5ea7b" 19SRC_URI[md5sum] = "ed46f09b9c0fa2d49015f6431bc5ea7b"
20SRC_URI[sha256sum] = "2ce360683963b35c19c43f0ee2c7f18aa5b81ef41c3fdbd15ffcb00b8bffda7a" 20SRC_URI[sha256sum] = "2ce360683963b35c19c43f0ee2c7f18aa5b81ef41c3fdbd15ffcb00b8bffda7a"
21 21
22inherit autotools update-rc.d systemd pkgconfig 22inherit autotools update-rc.d systemd pkgconfig update-alternatives
23 23
24PACKAGECONFIG ??= "tcp-wrappers" 24PACKAGECONFIG ??= "tcp-wrappers"
25PACKAGECONFIG[tcp-wrappers] = "--enable-libwrap,--disable-libwrap,tcp-wrappers" 25PACKAGECONFIG[tcp-wrappers] = "--enable-libwrap,--disable-libwrap,tcp-wrappers"
@@ -50,3 +50,6 @@ do_install_append () {
50 ${WORKDIR}/init.d > ${D}${sysconfdir}/init.d/rpcbind 50 ${WORKDIR}/init.d > ${D}${sysconfdir}/init.d/rpcbind
51 chmod 0755 ${D}${sysconfdir}/init.d/rpcbind 51 chmod 0755 ${D}${sysconfdir}/init.d/rpcbind
52} 52}
53
54ALTERNATIVE_${PN} = "rpcinfo"
55ALTERNATIVE_LINK_NAME[rpcinfo] = "${bindir}/rpcinfo"