summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2001-04-21 14:31:52 -0700
committerTim Rice <tim@multitalents.net>2001-04-21 14:31:52 -0700
commitb8fbb8eca0ae7ce621a40ee95cdb3f139398e0c9 (patch)
treeefca281b947153dc0d5491b1f823ea53f83474be /Makefile.in
parent32c97c3712c71e00b11dd5ba87962c146606b3ba (diff)
fix perl test, fix nroff test, fix Makefile to build outside source tree
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index b43c55e37..51adfacf9 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.172 2001/04/18 18:04:22 mouring Exp $ 1# $Id: Makefile.in,v 1.173 2001/04/21 21:31:53 tim Exp $
2 2
3prefix=@prefix@ 3prefix=@prefix@
4exec_prefix=@exec_prefix@ 4exec_prefix=@exec_prefix@
@@ -123,9 +123,9 @@ logintest: logintest.o $(LIBCOMPAT) libssh.a loginrec.o
123 123
124$(MANPAGES):: 124$(MANPAGES)::
125 if test "$(MANTYPE)" = "cat"; then \ 125 if test "$(MANTYPE)" = "cat"; then \
126 manpage=`echo $@ | sed 's/\.[1-9]$$/\.0/'`; \ 126 manpage=$(srcdir)/`echo $@ | sed 's/\.[1-9]$$/\.0/'`; \
127 else \ 127 else \
128 manpage=$@; \ 128 manpage=$(srcdir)/$@; \
129 fi; \ 129 fi; \
130 if test "$(MANTYPE)" = "man"; then \ 130 if test "$(MANTYPE)" = "man"; then \
131 $(FIXPATHSCMD) $${manpage} | $(PERL) $(srcdir)/mdoc2man.pl > $@.out; \ 131 $(FIXPATHSCMD) $${manpage} | $(PERL) $(srcdir)/mdoc2man.pl > $@.out; \