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 a603609ae..ea0f9c3ef 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -292,7 +292,7 @@ install-files: scard-install
292 else \ 292 else \
293 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \ 293 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
294 fi 294 fi
295 @if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \ 295 @if [ -f ssh_prng_cmds ] && [ ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
296 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \ 296 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
297 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \ 297 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
298 else \ 298 else \
@@ -406,7 +406,7 @@ tests: $(TARGETS)
406 $@ 406 $@
407 407
408regressclean: 408regressclean:
409 if [ -f regress/Makefile -a -r regress/Makefile ]; then \ 409 if [ -f regress/Makefile ] && [ -r regress/Makefile ]; then \
410 (cd regress && $(MAKE) clean) \ 410 (cd regress && $(MAKE) clean) \
411 fi 411 fi
412 412