summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-12-27 16:44:51 +1100
committerDamien Miller <djm@mindrot.org>2000-12-27 16:44:51 +1100
commitfa610a17a3d8251bec7b0a869eae6aadb1ea3c55 (patch)
tree5deffa6d38498ace93acedf346691d9c30aaa750
parent2c467a20f4f82000908b7c3d158e8a7960d3bad1 (diff)
- (djm) Fix catman-do target for non-bash
-rw-r--r--ChangeLog1
-rw-r--r--Makefile.in5
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d23a7f555..f0663c038 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
3 Takumi Yamane <yamtak@b-session.com> 3 Takumi Yamane <yamtak@b-session.com>
4 - (bal) Checks for getrlimit(), sysconf(), and setdtablesize(). Patch 4 - (bal) Checks for getrlimit(), sysconf(), and setdtablesize(). Patch
5 by Corinna Vinschen <vinschen@redhat.com> 5 by Corinna Vinschen <vinschen@redhat.com>
6 - (djm) Fix catman-do target for non-bash
6 7
720001223 820001223
8 - (bal) Fixed Makefile.in to support recompile of all ssh and sshd objects 9 - (bal) Fixed Makefile.in to support recompile of all ssh and sshd objects
diff --git a/Makefile.in b/Makefile.in
index 117968cdc..05ff36eff 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -127,9 +127,10 @@ veryclean: distclean
127 127
128catman-do: 128catman-do:
129 @for f in $(TROFFMAN) ; do \ 129 @for f in $(TROFFMAN) ; do \
130 echo "$$f -> $${f%%.[18]}.0" ; \ 130 base=`echo $$f | sed 's/\..*$$//'` ; \
131 echo "$$f -> $$base.0" ; \
131 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \ 132 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
132 >$${f%%.[18]}.0 ; \ 133 >$$base.0 ; \
133 done 134 done
134 135
135distprep: catman-do 136distprep: catman-do