aboutsummaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2015-03-31 08:36:21 -0500
committerBrent Cook <bcook@openbsd.org>2015-03-31 08:36:21 -0500
commit20101fd6b33d712e45f74c5297f79ea4225c183c (patch)
tree533d8341157829e29002aee1e789606b01b2efb0 /man
parent273bd7bd61cbf37219dcefa5ccc7e3e40ae1cb76 (diff)
downloadportable-20101fd6b33d712e45f74c5297f79ea4225c183c.tar.gz
portable-20101fd6b33d712e45f74c5297f79ea4225c183c.tar.bz2
portable-20101fd6b33d712e45f74c5297f79ea4225c183c.zip
avoid install failures on case-insensitive file systems
Diffstat (limited to 'man')
-rw-r--r--man/links1
-rwxr-xr-xman/update_links.sh4
2 files changed, 3 insertions, 2 deletions
diff --git a/man/links b/man/links
index 5dc3849..938d469 100644
--- a/man/links
+++ b/man/links
@@ -1100,7 +1100,6 @@ lhash.3,lh_free.3
1100lhash.3,lh_insert.3 1100lhash.3,lh_insert.3
1101lhash.3,lh_new.3 1101lhash.3,lh_new.3
1102lhash.3,lh_retrieve.3 1102lhash.3,lh_retrieve.3
1103ssl.3,SSL.3
1104tls_init.3,tls.3 1103tls_init.3,tls.3
1105tls_init.3,tls_accept_socket.3 1104tls_init.3,tls_accept_socket.3
1106tls_init.3,tls_client.3 1105tls_init.3,tls_client.3
diff --git a/man/update_links.sh b/man/update_links.sh
index fe75640..0c83041 100755
--- a/man/update_links.sh
+++ b/man/update_links.sh
@@ -9,7 +9,9 @@ for i in `ls -1 *.3`; do
9 links=`sqlite3 /usr/share/man/mandoc.db \ 9 links=`sqlite3 /usr/share/man/mandoc.db \
10 "select names.name from mlinks,names where mlinks.name='$name' and mlinks.pageid=names.pageid;"` 10 "select names.name from mlinks,names where mlinks.name='$name' and mlinks.pageid=names.pageid;"`
11 for j in $links; do 11 for j in $links; do
12 if [ "x$j" != "x$name" ]; then 12 a=`echo "x$j" | tr '[:upper:]' '[:lower:]'`
13 b=`echo "x$name" | tr '[:upper:]' '[:lower:]'`
14 if [ $a != $b ]; then
13 echo $name.3,$j.3 >> links 15 echo $name.3,$j.3 >> links
14 fi 16 fi
15 done 17 done