summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index ded7b9372..db9eb34ab 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.264 2004/08/29 09:52:32 dtucker Exp $ 1# $Id: Makefile.in,v 1.265 2004/08/30 11:33:02 dtucker Exp $
2 2
3# uncomment if you run a non bourne compatable shell. Ie. csh 3# uncomment if you run a non bourne compatable shell. Ie. csh
4#SHELL = @SH@ 4#SHELL = @SH@
@@ -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