aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2018-06-16 21:35:58 -0500
committerBrent Cook <bcook@openbsd.org>2018-06-16 21:35:58 -0500
commit1ea79d2a9fec76720158499f208258a43f57dbd8 (patch)
tree8d17ea1692bf219a7dec22e1085d9fe5a0251821
parentb78f2939398db49bb1dfabaa48529d11ae687e20 (diff)
downloadportable-1ea79d2a9fec76720158499f208258a43f57dbd8.tar.gz
portable-1ea79d2a9fec76720158499f208258a43f57dbd8.tar.bz2
portable-1ea79d2a9fec76720158499f208258a43f57dbd8.zip
avoid duplicate link with bn_print/BN_print
-rw-r--r--man/links1
-rwxr-xr-xman/update_links.sh7
2 files changed, 6 insertions, 2 deletions
diff --git a/man/links b/man/links
index 2d89841..1e256d8 100644
--- a/man/links
+++ b/man/links
@@ -1896,7 +1896,6 @@ bn_dump.3,bn_mul_normal.3
1896bn_dump.3,bn_mul_part_recursive.3 1896bn_dump.3,bn_mul_part_recursive.3
1897bn_dump.3,bn_mul_recursive.3 1897bn_dump.3,bn_mul_recursive.3
1898bn_dump.3,bn_mul_words.3 1898bn_dump.3,bn_mul_words.3
1899bn_dump.3,bn_print.3
1900bn_dump.3,bn_set_high.3 1899bn_dump.3,bn_set_high.3
1901bn_dump.3,bn_set_low.3 1900bn_dump.3,bn_set_low.3
1902bn_dump.3,bn_set_max.3 1901bn_dump.3,bn_set_max.3
diff --git a/man/update_links.sh b/man/update_links.sh
index 06790e4..e72f03d 100755
--- a/man/update_links.sh
+++ b/man/update_links.sh
@@ -15,5 +15,10 @@
15 15
16makewhatis -a . 16makewhatis -a .
17 17
18# We have to filter out some links that fail on case-insensitive filesystems
19# Running makewhatis with the right arguments should work on mandoc systems.
18echo "# This is an auto-generated file by $0" > links 20echo "# This is an auto-generated file by $0" > links
19/usr/src/regress/usr.bin/mandoc/db/mlinks/obj/mlinks mandoc.db | sort | grep -v OCSP_crlID_new >> links 21/usr/src/regress/usr.bin/mandoc/db/mlinks/obj/mlinks mandoc.db | \
22 grep -v OCSP_crlID_new | \
23 grep -v bn_print | \
24 sort >> links