summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Perrot <thomas.perrot@bootlin.com>2022-05-20 14:50:38 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-21 08:37:30 +0100
commit23103d45c0012328870977de7165ba048730f4eb (patch)
tree70696c5dd0ab055af79a89cee750d550fe6e1359
parent35e9ce18f57acf31cc49f0dddbb3346cf643f028 (diff)
downloadpoky-23103d45c0012328870977de7165ba048730f4eb.tar.gz
man-pages: add an alternative link name for crypt_r.3
Because crypt_r.3 is also provided by libxcrypt-doc. (From OE-Core rev: ae5a8629ea72d6b3567047c7b858deae28623aba) Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/man-pages/man-pages_5.13.bb7
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/recipes-extended/man-pages/man-pages_5.13.bb b/meta/recipes-extended/man-pages/man-pages_5.13.bb
index c0198b77be..f8602c699e 100644
--- a/meta/recipes-extended/man-pages/man-pages_5.13.bb
+++ b/meta/recipes-extended/man-pages/man-pages_5.13.bb
@@ -30,7 +30,8 @@ FILES:${PN} = "${mandir}/*"
30inherit update-alternatives 30inherit update-alternatives
31 31
32ALTERNATIVE_PRIORITY = "100" 32ALTERNATIVE_PRIORITY = "100"
33ALTERNATIVE:${PN} = "passwd.5 getspnam.3 crypt.3" 33ALTERNATIVE:${PN} = "crypt.3 crypt_r.3 getspnam.3 passwd.5"
34ALTERNATIVE_LINK_NAME[passwd.5] = "${mandir}/man5/passwd.5"
35ALTERNATIVE_LINK_NAME[getspnam.3] = "${mandir}/man3/getspnam.3"
36ALTERNATIVE_LINK_NAME[crypt.3] = "${mandir}/man3/crypt.3" 34ALTERNATIVE_LINK_NAME[crypt.3] = "${mandir}/man3/crypt.3"
35ALTERNATIVE_LINK_NAME[crypt_r.3] = "${mandir}/man3/crypt_r.3"
36ALTERNATIVE_LINK_NAME[getspnam.3] = "${mandir}/man3/getspnam.3"
37ALTERNATIVE_LINK_NAME[passwd.5] = "${mandir}/man5/passwd.5"