Diff for /elwix/config/rc.subr between versions 1.2 and 1.2.4.1

version 1.2, 2011/10/18 09:02:06 version 1.2.4.1, 2011/12/19 20:43:07
Line 69  InstallFiles() Line 69  InstallFiles()
                 tar -cvf - -T - | tar -C $3 -xf -                  tar -cvf - -T - | tar -C $3 -xf -
         cd -          cd -
 }  }
   
   # $1 = Directory for clean
   CleanCVS()
   {
           find $1 -type d -name CVS -exec rm -rf {} \; >/dev/null 2>&1
           find $1 -type f -name .#\* -exec rm -f {} \; >/dev/null 2>&1
   }
   

Removed from v.1.2  
changed lines
  Added in v.1.2.4.1


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>