View | Details | Raw Unified | Return to bug 894
Collapse All | Expand All

(-)Makefile.in (-2 / +2 lines)
Lines 292-298 install-files: scard-install Link Here
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 \
Lines 406-412 tests: $(TARGETS) Link Here
406
		$@
406
		$@
407
407
408
regressclean:
408
regressclean:
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
(-)contrib/ssh-copy-id (-1 / +1 lines)
Lines 24-30 else Link Here
24
  fi
24
  fi
25
fi
25
fi
26
26
27
if [ -z "`eval $GET_ID`" -a -r "${ID_FILE}" ] ; then
27
if [ -z "`eval $GET_ID`" ] && [ -r "${ID_FILE}" ] ; then
28
  GET_ID="cat ${ID_FILE}"
28
  GET_ID="cat ${ID_FILE}"
29
fi
29
fi
30
30

Return to bug 894