[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Makefile between version 1.3 and 1.4

version 1.3, 1999/09/26 22:29:50 version 1.4, 1999/09/27 23:47:43
Line 2 
Line 2 
   
 .include <bsd.own.mk>  .include <bsd.own.mk>
   
 SUBDIR= ssh sshd ssh-add ssh-keygen ssh-agent scp  SUBDIR= ssh sshd ssh-add ssh-keygen ssh-agent scp
   
 generate-host-key:  
         -@if [ -f ${DESTDIR}/etc/ssh_host_key ]; then \  
                 echo "Host key exists in ${DESTDIR}/etc/ssh_host_key."; \  
         else \  
                 umask 022; echo "Generating 1024 bit host key."; \  
                 ssh-keygen -b 1024 -f ${DESTDIR}/etc/ssh_host_key -N ''; \  
         fi  
   
 distribution:  distribution:
         install -C -o root -g wheel -m 0644 ${.CURDIR}/etc/ssh_config /etc          install -C -o root -g wheel -m 0644 ${.CURDIR}/ssh_config \
         install -C -o root -g wheel -m 0644 ${.CURDIR}/etc/sshd_config /etc              ${DESTDIR}/etc/ssh_config
           install -C -o root -g wheel -m 0644 ${.CURDIR}/sshd_config \
               ${DESTDIR}/etc/sshd_config
   
 .include <bsd.subdir.mk>  .include <bsd.subdir.mk>

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4