From bc2d1a3255b658a0d3639aafeb2d364ed0183c2b Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Fri, 11 Jul 2014 00:51:33 -0500 Subject: [PATCH] fixes for manpage linker --- update.sh | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/update.sh b/update.sh index 3826c97..66b50e3 100755 --- a/update.sh +++ b/update.sh @@ -389,18 +389,15 @@ crypto_excludes=( BASE=`echo $i|sed -e "s/\.pod//"` NAME=`basename "$BASE"` echo processing $NAME - #pod2man --official --release=LibreSSL --center=LibreSSL --section=3 --name=$NAME < $BASE.pod > $NAME.3 + pod2man --official --release=LibreSSL --center=LibreSSL --section=3 --name=$NAME < $BASE.pod > $NAME.3 echo "dist_man_MANS += $NAME.3" >> Makefile.am done echo "dist_man_MANS += openssl.1" >> Makefile.am - echo "post-install-exec-hook:" >> Makefile.am + echo "install-data-hook:" >> Makefile.am cp ../$openssl_cmd_src/openssl.1 . - echo " \$(LN_S) \$(DESTDIR)\$(mandir)/man1/$1 \$(DESTDIR)\$(mandir)/man1/$2" >> Makefile.am source links - IFS="," for i in $MANLINKS; do - set $i + IFS=","; set $i; unset IFS echo " \$(LN_S) \$(DESTDIR)\$(mandir)/man3/$1 \$(DESTDIR)\$(mandir)/man3/$2" >> Makefile.am done - unset IFS )