[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / etc

Diff for /src/etc/Makefile between version 1.322 and 1.323

version 1.322, 2012/08/23 07:02:49 version 1.323, 2012/08/29 04:04:15
Line 317 
Line 317 
         cd ../distrib && \          cd ../distrib && \
             ${MAKE} && exec ${SUDO} ${MAKE} install              ${MAKE} && exec ${SUDO} ${MAKE} install
   
   # Becasue the moduli sizes > 4096 are not commonly used, and because they
   # take a long time to generate we update the <= 4096 ones more frequently.
 DHSIZE=1024 1536 2048 3072 4096  DHSIZE=1024 1536 2048 3072 4096
 update-moduli:  update-moduli: moduli.6144 moduli.8192
         ( \          ( \
                 echo -n '#    $$Open'; echo 'BSD$$'; \                  echo -n '#    $$Open'; echo 'BSD$$'; \
                 echo '# Time Type Tests Tries Size Generator Modulus'; \                  echo '# Time Type Tests Tries Size Generator Modulus'; \
                 ( for i in ${DHSIZE}; do \                  ( for i in ${DHSIZE}; do \
                         ssh-keygen -b $$i -G /dev/stdout; \                          ssh-keygen -b $$i -G /dev/stdout; \
                 done) | \                  done) | \
                 ssh-keygen -T /dev/stdout \                  ssh-keygen -T /dev/stdout ; \
                   cat moduli.6144 ; \
                   cat moduli.8192 ; \
         ) > moduli          ) > moduli
   
 .PHONY: distribution-etc-root-var distribution distrib-dirs \  .PHONY: distribution-etc-root-var distribution distrib-dirs \

Legend:
Removed from v.1.322  
changed lines
  Added in v.1.323