summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-10-14 17:45:58 +1100
committerDamien Miller <djm@mindrot.org>2000-10-14 17:45:58 +1100
commite4041c9d81e55cedcc4567f3840116900b5db85e (patch)
tree51cd2c2704ed204c8e7daefcde9e51e4a2eefe14 /Makefile.in
parent874d77bb134a21a5cf625956b60173376a993ba8 (diff)
- (djm) Fix scp user@host handling
- (djm) Don't clobber ssh_prng_cmds on install
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index af0886cde..9969a5216 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -154,7 +154,9 @@ install-files:
154 fi 154 fi
155 if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \ 155 if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
156 $(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \ 156 $(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
157 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \ 157 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
158 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
159 fi ; \
158 fi 160 fi
159 161
160host-key: ssh-keygen$(EXEEXT) 162host-key: ssh-keygen$(EXEEXT)