- (djm) Fix catman-do target for non-bash

This commit is contained in:
Damien Miller 2000-12-27 16:44:51 +11:00
parent 2c467a20f4
commit fa610a17a3
2 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,7 @@
Takumi Yamane <yamtak@b-session.com> Takumi Yamane <yamtak@b-session.com>
- (bal) Checks for getrlimit(), sysconf(), and setdtablesize(). Patch - (bal) Checks for getrlimit(), sysconf(), and setdtablesize(). Patch
by Corinna Vinschen <vinschen@redhat.com> by Corinna Vinschen <vinschen@redhat.com>
- (djm) Fix catman-do target for non-bash
20001223 20001223
- (bal) Fixed Makefile.in to support recompile of all ssh and sshd objects - (bal) Fixed Makefile.in to support recompile of all ssh and sshd objects

View File

@ -127,9 +127,10 @@ veryclean: distclean
catman-do: catman-do:
@for f in $(TROFFMAN) ; do \ @for f in $(TROFFMAN) ; do \
echo "$$f -> $${f%%.[18]}.0" ; \ base=`echo $$f | sed 's/\..*$$//'` ; \
echo "$$f -> $$base.0" ; \
nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \ nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
>$${f%%.[18]}.0 ; \ >$$base.0 ; \
done done
distprep: catman-do distprep: catman-do