Add .svn to the list of directories to exclude - patch by John L. Villalovos

bug 328407 r=timeless
This commit is contained in:
bear%code-bear.com 2006-05-17 14:52:32 +00:00
Родитель a8f0e187b8
Коммит 16ad4561fb
1 изменённых файлов: 1 добавлений и 0 удалений

1
webtools/tinderbox2/configure поставляемый
Просмотреть файл

@ -215,6 +215,7 @@ my @install_files=();
sub wanted_source_files {
$File::Find::prune = 1, return if $_ eq 'CVS';
$File::Find::prune = 1, return if $_ eq '.svn';
return unless -T $_;
return if /^\#/ or /~$/ or /^\./;
push @source_files, $File::Find::name;