summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
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 6588b1b99..3e7d7a89b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -27,6 +27,7 @@ RANLIB=@RANLIB@
27INSTALL=@INSTALL@ 27INSTALL=@INSTALL@
28PERL=@PERL@ 28PERL=@PERL@
29ENT=@ENT@ 29ENT=@ENT@
30XAUTH_PATH=@XAUTH_PATH@
30LDFLAGS=-L. @LDFLAGS@ 31LDFLAGS=-L. @LDFLAGS@
31EXEEXT=@EXEEXT@ 32EXEEXT=@EXEEXT@
32SSH_MODE= @SSHMODE@ 33SSH_MODE= @SSHMODE@
@@ -49,7 +50,19 @@ MANPAGES = @MANTYPE@
49 50
50CONFIGFILES=sshd_config ssh_config primes 51CONFIGFILES=sshd_config ssh_config primes
51 52
52PATHSUBS = -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 53PATHSUBS = \
54 -D/etc/ssh_config=$(sysconfdir)/ssh_config \
55 -D/etc/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts \
56 -D/etc/sshd_config=$(sysconfdir)/sshd_config \
57 -D/usr/libexec=$(libexecdir) \
58 -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv \
59 -D/etc/ssh_host_key=$(sysconfdir)/ssh_host_key \
60 -D/etc/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key \
61 -D/etc/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key \
62 -D/var/run/sshd.pid=$(piddir)/sshd.pid \
63 -D/etc/primes=$(sysconfdir)/primes \
64 -D/etc/sshrc=$(sysconfdir)/sshrc \
65 -D/usr/X11R6/bin/xauth=$(XAUTH_PATH)
53 66
54FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS) 67FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
55 68