aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2014-07-11 03:55:48 -0500
committerBrent Cook <bcook@openbsd.org>2014-07-11 03:56:58 -0500
commite1e636db22ed502c80e3434de235ad68ae8f0c6b (patch)
tree491d22b359f56beee003ccea5eb104b78caca22d
parent0e9857d448faeaa3963ec838a03152c7e0b26d98 (diff)
downloadportable-e1e636db22ed502c80e3434de235ad68ae8f0c6b.tar.gz
portable-e1e636db22ed502c80e3434de235ad68ae8f0c6b.tar.bz2
portable-e1e636db22ed502c80e3434de235ad68ae8f0c6b.zip
prefer symlinks rather than hardlinks for manpages
ok beck@
-rw-r--r--configure.ac1
-rwxr-xr-xupdate.sh2
2 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 7aec0b7..2e00982 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,7 +36,6 @@ AC_PROG_CC
36AC_PROG_LIBTOOL 36AC_PROG_LIBTOOL
37AC_PROG_CC_STDC 37AC_PROG_CC_STDC
38AM_PROG_CC_C_O 38AM_PROG_CC_C_O
39AC_PROG_LN_S
40 39
41AC_CHECK_FUNC(strlcpy,[AC_SEARCH_LIBS(strlcpy,, [NO_STRLCPY=], 40AC_CHECK_FUNC(strlcpy,[AC_SEARCH_LIBS(strlcpy,, [NO_STRLCPY=],
42 [NO_STRLCPY=yes])], [NO_STRLCPY=yes]) 41 [NO_STRLCPY=yes])], [NO_STRLCPY=yes])
diff --git a/update.sh b/update.sh
index a775a1a..3fc5d07 100755
--- a/update.sh
+++ b/update.sh
@@ -413,6 +413,6 @@ crypto_excludes=(
413 source links 413 source links
414 for i in $MLINKS; do 414 for i in $MLINKS; do
415 IFS=","; set $i; unset IFS 415 IFS=","; set $i; unset IFS
416 echo " \$(LN_S) -f \$(DESTDIR)\$(mandir)/man3/$1 \$(DESTDIR)\$(mandir)/man3/$2" >> Makefile.am 416 echo " ln -f \$(DESTDIR)\$(mandir)/man3/$1 \$(DESTDIR)\$(mandir)/man3/$2" >> Makefile.am
417 done 417 done
418) 418)