diff options
author | Damien Miller <djm@mindrot.org> | 2000-09-21 21:51:07 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-09-21 21:51:07 +1100 |
commit | f13f75da2e675ac6dd212c590828e358e9b29ecb (patch) | |
tree | 34d97f826923a1511365dfbf23309eba093ea5a4 | |
parent | a1b61e11a71ffc371272a2ecb516e52cc6e32fa9 (diff) |
- (djm) Fix bad path substitution. Report from Andrew Miner
<asminer@cs.iastate.edu>
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20000920 | ||
2 | - (djm) Fix bad path substitution. Report from Andrew Miner | ||
3 | <asminer@cs.iastate.edu> | ||
4 | |||
1 | 20000916 | 5 | 20000916 |
2 | - (djm) Fix SSL search order from Lutz Jaenicke | 6 | - (djm) Fix SSL search order from Lutz Jaenicke |
3 | <Lutz.Jaenicke@aet.TU-Cottbus.DE> | 7 | <Lutz.Jaenicke@aet.TU-Cottbus.DE> |
diff --git a/Makefile.in b/Makefile.in index f3a19c0fd..e21778bac 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -48,7 +48,7 @@ MANPAGES = @MANTYPE@ | |||
48 | 48 | ||
49 | CONFIGFILES=sshd_config ssh_config | 49 | CONFIGFILES=sshd_config ssh_config |
50 | 50 | ||
51 | PATHSUBS = -D/etc/ssh_config=$(sysconfdir)/ssh_config -D/etc/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 | 51 | 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 |
52 | 52 | ||
53 | FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS) | 53 | FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS) |
54 | 54 | ||