diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-21 03:38:53 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-21 03:38:53 +0200 |
commit | 90ac0b5945bc280ad86ae51fbd96875baac0f55b (patch) | |
tree | 250d2023704b53b4406f977f4c8789da12ac5565 | |
parent | - (bal) Missed integrating ssh_config.5 and sshd_config.5 (diff) | |
download | openssh-90ac0b5945bc280ad86ae51fbd96875baac0f55b.tar.xz openssh-90ac0b5945bc280ad86ae51fbd96875baac0f55b.zip |
- (bal) Still more Makefile.in updates for ssh{d}_config.5
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Makefile.in | 5 |
2 files changed, 6 insertions, 2 deletions
@@ -57,6 +57,7 @@ - (bal) Cygwin special handling of empty passwords wrong. Patch by vinschen@redhat.com - (bal) Missed integrating ssh_config.5 and sshd_config.5 + - (bal) Still more Makefile.in updates for ssh{d}_config.5 20020613 - (bal) typo of setgroup for cygwin. Patch by vinschen@redhat.com @@ -985,4 +986,4 @@ - (stevesk) entropy.c: typo in debug message - (djm) ssh-keygen -i needs seeded RNG; report from markus@ -$Id: ChangeLog,v 1.2233 2002/06/21 01:24:01 mouring Exp $ +$Id: ChangeLog,v 1.2234 2002/06/21 01:38:53 mouring Exp $ diff --git a/Makefile.in b/Makefile.in index 7e948d805..4b3e27865 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -# $Id: Makefile.in,v 1.214 2002/06/21 01:24:02 mouring Exp $ +# $Id: Makefile.in,v 1.215 2002/06/21 01:38:53 mouring Exp $ # uncomment if you run a non bourne compatable shell. Ie. csh #SHELL = @SH@ @@ -209,6 +209,7 @@ install-files: scard-install $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir) $(srcdir)/mkinstalldirs $(DESTDIR)$(datadir) $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1 + $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)5 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8 $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir) $(INSTALL) -m 0755 -s ssh $(DESTDIR)$(bindir)/ssh @@ -230,6 +231,8 @@ install-files: scard-install $(INSTALL) -m 644 ssh-agent.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1 $(INSTALL) -m 644 ssh-keygen.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1 $(INSTALL) -m 644 ssh-keyscan.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1 + $(INSTALL) -m 644 sshd_config.5.out $(DESTDIR)$(mandir)/$(mansubdir)5/sshd_config.5 + $(INSTALL) -m 644 ssh_config.5.out $(DESTDIR)$(mandir)/$(mansubdir)5/ssh_config.5 $(INSTALL) -m 644 sshd.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8 if [ ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \ $(INSTALL) -m 644 ssh-rand-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-rand-helper.8 ; \ |