diff options
author | Brent Cook <bcook@openbsd.org> | 2014-07-11 03:55:48 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-07-11 03:56:58 -0500 |
commit | e1e636db22ed502c80e3434de235ad68ae8f0c6b (patch) | |
tree | 491d22b359f56beee003ccea5eb104b78caca22d | |
parent | 0e9857d448faeaa3963ec838a03152c7e0b26d98 (diff) | |
download | portable-e1e636db22ed502c80e3434de235ad68ae8f0c6b.tar.gz portable-e1e636db22ed502c80e3434de235ad68ae8f0c6b.tar.bz2 portable-e1e636db22ed502c80e3434de235ad68ae8f0c6b.zip |
prefer symlinks rather than hardlinks for manpages
ok beck@
-rw-r--r-- | configure.ac | 1 | ||||
-rwxr-xr-x | update.sh | 2 |
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 | |||
36 | AC_PROG_LIBTOOL | 36 | AC_PROG_LIBTOOL |
37 | AC_PROG_CC_STDC | 37 | AC_PROG_CC_STDC |
38 | AM_PROG_CC_C_O | 38 | AM_PROG_CC_C_O |
39 | AC_PROG_LN_S | ||
40 | 39 | ||
41 | AC_CHECK_FUNC(strlcpy,[AC_SEARCH_LIBS(strlcpy,, [NO_STRLCPY=], | 40 | AC_CHECK_FUNC(strlcpy,[AC_SEARCH_LIBS(strlcpy,, [NO_STRLCPY=], |
42 | [NO_STRLCPY=yes])], [NO_STRLCPY=yes]) | 41 | [NO_STRLCPY=yes])], [NO_STRLCPY=yes]) |
@@ -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 | ) |