diff options
author | Damien Miller <djm@mindrot.org> | 2000-11-13 23:17:53 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-11-13 23:17:53 +1100 |
commit | 457b5a2bed618a406d19b702ef3e03a5e150f761 (patch) | |
tree | ca51e6f134d4b0407b9dce5c151b2ad37115eff1 | |
parent | ee188d323c685e73d044e1acd0d20b43a355fc92 (diff) |
- (djm) fixpaths to DSA and RSA keys too
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | Makefile.in | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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 | ||
40 | 20001112 | 41 | 20001112 |
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 | ||
50 | CONFIGFILES=sshd_config ssh_config primes | 50 | CONFIGFILES=sshd_config ssh_config primes |
51 | 51 | ||
52 | 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/var/run/sshd.pid=$(piddir)/sshd.pid -D/etc/primes=$(sysconfdir)/primes | 52 | 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 |
53 | 53 | ||
54 | FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS) | 54 | FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS) |
55 | 55 | ||