~ubuntu-branches/debian/sid/openssh/sid

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2004-10-07 18:03:06 UTC
  • Revision ID: james.westby@ubuntu.com-20041007180306-0l8ii961txetbucx
Tags: 1:3.8.1p1-11ubuntu3
* Nathaniel McCallum:
  - debian/openssh-server.init: pretty initscript
  - debian/control: versioned depend on lsb-base

Show diffs side-by-side

added added

removed removed

Lines of Context:
290
290
        else \
291
291
                echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
292
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
294
                if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
295
295
                        $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
296
296
                else \
404
404
                $@
405
405
 
406
406
regressclean:
407
 
        if [ -f regress/Makefile -a -r regress/Makefile ]; then \
 
407
        if [ -f regress/Makefile ] && [ -r regress/Makefile ]; then \
408
408
                (cd regress && $(MAKE) clean) \
409
409
        fi