diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Makefile.in | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -1,4 +1,7 @@ 20110102 + - (djm) [Makefile.in] revert local hack I didn't intend to commit + +20110102 - (djm) [loginrec.c] Fix some fd leaks on error paths. ok dtucker - (djm) [configure.ac] Check whether libdes is needed when building with Heimdal krb5 support. On OpenBSD this library no longer exists, diff --git a/Makefile.in b/Makefile.in index 889b23db..b46a7b26 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -# $Id: Makefile.in,v 1.312 2011/01/02 10:53:08 djm Exp $ +# $Id: Makefile.in,v 1.313 2011/01/03 03:48:16 djm Exp $ # uncomment if you run a non bourne compatable shell. Ie. csh #SHELL = @SH@ @@ -230,7 +230,7 @@ catman-do: @for f in $(MANPAGES_IN) ; do \ base=`echo $$f | sed 's/\..*$$//'` ; \ echo "$$f -> $$base.0" ; \ - mandoc $$f | cat -v | sed -e 's/.\^H//g' \ + nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \ >$$base.0 ; \ done |