prefer symlinks rather than hardlinks for manpages

ok beck@
This commit is contained in:
Brent Cook 2014-07-11 03:55:48 -05:00
parent 0e9857d448
commit e1e636db22
2 changed files with 1 additions and 2 deletions

View File

@ -36,7 +36,6 @@ AC_PROG_CC
AC_PROG_LIBTOOL
AC_PROG_CC_STDC
AM_PROG_CC_C_O
AC_PROG_LN_S
AC_CHECK_FUNC(strlcpy,[AC_SEARCH_LIBS(strlcpy,, [NO_STRLCPY=],
[NO_STRLCPY=yes])], [NO_STRLCPY=yes])

View File

@ -413,6 +413,6 @@ crypto_excludes=(
source links
for i in $MLINKS; do
IFS=","; set $i; unset IFS
echo " \$(LN_S) -f \$(DESTDIR)\$(mandir)/man3/$1 \$(DESTDIR)\$(mandir)/man3/$2" >> Makefile.am
echo " ln -f \$(DESTDIR)\$(mandir)/man3/$1 \$(DESTDIR)\$(mandir)/man3/$2" >> Makefile.am
done
)