stupid ; misplacement
This commit is contained in:
parent
895f238672
commit
29abb1b6a9
16
Makefile.in
16
Makefile.in
|
@ -152,26 +152,26 @@ install-files:
|
||||||
fi
|
fi
|
||||||
if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \
|
if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \
|
||||||
$(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
|
$(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
|
||||||
else ;\
|
else \
|
||||||
echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite" ;\
|
echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite"; \
|
||||||
fi
|
fi
|
||||||
if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
|
if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
|
||||||
$(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
|
$(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
|
||||||
else ;\
|
else \
|
||||||
echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite" ;\
|
echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
|
||||||
fi
|
fi
|
||||||
if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
|
if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
|
||||||
$(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
|
$(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
|
||||||
if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
|
if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
|
||||||
$(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
|
$(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
|
||||||
else ;\
|
else \
|
||||||
echo "$(DESTDIR)$(sysconfdir)/ssh_prng_cmds already exists, install will not overwrite" ;\
|
echo "$(DESTDIR)$(sysconfdir)/ssh_prng_cmds already exists, install will not overwrite"; \
|
||||||
fi ; \
|
fi ; \
|
||||||
fi
|
fi
|
||||||
if [ ! -f $(DESTDIR)$(sysconfdir)/primes ]; then \
|
if [ ! -f $(DESTDIR)$(sysconfdir)/primes ]; then \
|
||||||
$(INSTALL) -m 644 primes $(DESTDIR)$(sysconfdir)/primes; \
|
$(INSTALL) -m 644 primes $(DESTDIR)$(sysconfdir)/primes; \
|
||||||
else ;\
|
else \
|
||||||
echo "$(DESTDIR)$(sysconfdir)/primes already exists, install will not overwrite" ;\
|
echo "$(DESTDIR)$(sysconfdir)/primes already exists, install will not overwrite"; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
host-key: ssh-keygen$(EXEEXT)
|
host-key: ssh-keygen$(EXEEXT)
|
||||||
|
|
Loading…
Reference in New Issue