Skip to content

Commit

Permalink
fixes for manpage linker
Browse files Browse the repository at this point in the history
  • Loading branch information
busterb committed Jul 11, 2014
1 parent 5acefa2 commit bc2d1a3
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

0 comments on commit bc2d1a3

Please sign in to comment.