summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-11-29 13:28:50 +1100
committerDamien Miller <djm@mindrot.org>2000-11-29 13:28:50 +1100
commita19cf47b0fa5cd16c1e471792109ce06023c9757 (patch)
tree6868e889dd93c26706c8fcbea15792c67abc5742 /Makefile.in
parentdadc05126872b4335d0c71b271c4431340162400 (diff)
- (djm) Patch from Pekka Savola <Pekka.Savola@netcore.fi> to include a few
more manpage paths in fixpaths calls - (djm) Also add xauth path at Pekka's suggestion.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in15
1 files changed, 14 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 6588b1b9..3e7d7a89 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -27,6 +27,7 @@ RANLIB=@RANLIB@
INSTALL=@INSTALL@
PERL=@PERL@
ENT=@ENT@
+XAUTH_PATH=@XAUTH_PATH@
LDFLAGS=-L. @LDFLAGS@
EXEEXT=@EXEEXT@
SSH_MODE= @SSHMODE@
@@ -49,7 +50,19 @@ MANPAGES = @MANTYPE@
CONFIGFILES=sshd_config ssh_config primes
-PATHSUBS = -D/etc/ssh_config=$(sysconfdir)/ssh_config -D/etc/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts -D/etc/sshd_config=$(sysconfdir)/sshd_config -D/usr/libexec=$(libexecdir) -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv -D/etc/ssh_host_key=$(sysconfdir)/ssh_host_key -D/etc/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key -D/etc/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key -D/var/run/sshd.pid=$(piddir)/sshd.pid -D/etc/primes=$(sysconfdir)/primes
+PATHSUBS = \
+ -D/etc/ssh_config=$(sysconfdir)/ssh_config \
+ -D/etc/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts \
+ -D/etc/sshd_config=$(sysconfdir)/sshd_config \
+ -D/usr/libexec=$(libexecdir) \
+ -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv \
+ -D/etc/ssh_host_key=$(sysconfdir)/ssh_host_key \
+ -D/etc/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key \
+ -D/etc/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key \
+ -D/var/run/sshd.pid=$(piddir)/sshd.pid \
+ -D/etc/primes=$(sysconfdir)/primes \
+ -D/etc/sshrc=$(sysconfdir)/sshrc \
+ -D/usr/X11R6/bin/xauth=$(XAUTH_PATH)
FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)