summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-11-13 23:17:53 +1100
committerDamien Miller <djm@mindrot.org>2000-11-13 23:17:53 +1100
commit457b5a2bed618a406d19b702ef3e03a5e150f761 (patch)
treeca51e6f134d4b0407b9dce5c151b2ad37115eff1
parentee188d323c685e73d044e1acd0d20b43a355fc92 (diff)
- (djm) fixpaths to DSA and RSA keys too
-rw-r--r--ChangeLog1
-rw-r--r--Makefile.in2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c9cde251e..5e85bff07 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -36,6 +36,7 @@
36 - (djm) Fix up Makefile and Redhat init script to create RSA host keys 36 - (djm) Fix up Makefile and Redhat init script to create RSA host keys
37 - (djm) Change to interim version 37 - (djm) Change to interim version
38 - (djm) Fix RPM spec file stupidity 38 - (djm) Fix RPM spec file stupidity
39 - (djm) fixpaths to DSA and RSA keys too
39 40
4020001112 4120001112
41 - (bal) SCO Patch to add needed libraries for configure.in. Patch by 42 - (bal) SCO Patch to add needed libraries for configure.in. Patch by
diff --git a/Makefile.in b/Makefile.in
index c93e7eab2..7967cc57b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -49,7 +49,7 @@ MANPAGES = @MANTYPE@
49 49
50CONFIGFILES=sshd_config ssh_config primes 50CONFIGFILES=sshd_config ssh_config primes
51 51
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/var/run/sshd.pid=$(piddir)/sshd.pid -D/etc/primes=$(sysconfdir)/primes 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
53 53
54FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS) 54FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
55 55