summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 919b36819..8bff3cb2d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -290,7 +290,7 @@ install-files: scard-install
290 else \ 290 else \
291 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \ 291 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
292 fi 292 fi
293 @if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \ 293 @if [ -f ssh_prng_cmds ] && [ ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
294 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \ 294 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
295 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \ 295 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
296 else \ 296 else \
@@ -404,6 +404,6 @@ tests: $(TARGETS)
404 $@ 404 $@
405 405
406regressclean: 406regressclean:
407 if [ -f regress/Makefile -a -r regress/Makefile ]; then \ 407 if [ -f regress/Makefile ] && [ -r regress/Makefile ]; then \
408 (cd regress && $(MAKE) clean) \ 408 (cd regress && $(MAKE) clean) \
409 fi 409 fi