From b0565945e45ce802d1685422903f1b56062d1056 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Sun, 26 Apr 2015 23:01:26 -0500 Subject: use soft links for related man pages. This matches the behavior of OpenSSL's installer and prevents hitting the max hard link limit on some file systems. --- update.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/update.sh b/update.sh index 9828093..7863b18 100755 --- a/update.sh +++ b/update.sh @@ -263,8 +263,7 @@ echo "copying manpages" for i in `cat ./links`; do IFS=","; set $i; unset IFS if [ "$2" != "" ]; then - echo " ln -f \$(DESTDIR)\$(mandir)/man3/$1 \\" >> Makefile.am - echo " \$(DESTDIR)\$(mandir)/man3/$2" >> Makefile.am + echo " ln -sf $1 \$(DESTDIR)\$(mandir)/man3/$2" >> Makefile.am fi done echo "" >> Makefile.am -- cgit v1.2.3-55-g6feb