From 98cf7d46ae2a163cd25bc15a1fd4e3627b309b1d Mon Sep 17 00:00:00 2001 From: Eric Mader Date: Tue, 23 Jan 2007 23:22:18 +0000 Subject: [PATCH] ICU-5569 port changes from branches/eric/loengine revision 20914 X-SVN-Rev: 20915 --- icu4c/source/tools/cpysearch/cpyscan.pl | 4 ++-- icu4c/source/tools/cpysearch/cpysearch.pl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/icu4c/source/tools/cpysearch/cpyscan.pl b/icu4c/source/tools/cpysearch/cpyscan.pl index eab4f36a27..9dfbecd5cf 100755 --- a/icu4c/source/tools/cpysearch/cpyscan.pl +++ b/icu4c/source/tools/cpysearch/cpyscan.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl -w # *********************************************************************** # * COPYRIGHT: -# * Copyright (c) 2002-2005, International Business Machines Corporation +# * Copyright (c) 2002-2007, International Business Machines Corporation # * and others. All Rights Reserved. # *********************************************************************** # @@ -10,7 +10,7 @@ use strict; my $icuSource = $ARGV[0]; -my $ignore = "data/out/build|CVS|\\~|\\#|Debug|Release|\\.dll|\\.ilk|\\.idb|\\.pdb|\\.dsp|\\.dsw|\\.opt|\\.ncb|\\.vcproj|\\.sln|\\.suo|\\.cvsignore|\\.cnv|\\.res|\\.icu|\\.exe|\\.obj|\\.bin|\\.exp|\\.lib|\\.out|\\.plg|positions|unidata|\\.jar|\\.spp|\\.stub|\\.policy"; +my $ignore = "data/out/build|CVS|\\.svn|\\~|\\#|Debug|Release|\\.dll|\\.ilk|\\.idb|\\.pdb|\\.dsp|\\.dsw|\\.opt|\\.ncb|\\.vcproj|\\.sln|\\.suo|\\.cvsignore|\\.cnv|\\.res|\\.icu|\\.exe|\\.obj|\\.bin|\\.exp|\\.lib|\\.out|\\.plg|positions|unidata|\\.jar|\\.spp|\\.stub|\\.policy"; my $command = "find $icuSource -type f | fgrep -v -f cpyskip.txt"; my @files = `$command`; diff --git a/icu4c/source/tools/cpysearch/cpysearch.pl b/icu4c/source/tools/cpysearch/cpysearch.pl index 77bf85edf6..fb1c2134c3 100755 --- a/icu4c/source/tools/cpysearch/cpysearch.pl +++ b/icu4c/source/tools/cpysearch/cpysearch.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl -w # *********************************************************************** # * COPYRIGHT: -# * Copyright (c) 2002-2005, International Business Machines Corporation +# * Copyright (c) 2002-2007, International Business Machines Corporation # * and others. All Rights Reserved. # *********************************************************************** # @@ -11,7 +11,7 @@ use strict; my $icuSource = $ARGV[0]; -my $ignore = "CVS|\\~|\\#|Debug|Release|\\.dll|\\.ilk|\\.idb|\\.pdb|\\.dsp|\\.dsw|\\.opt|\\.ncb|\\.vcproj|\\.sln|\\.suo|\\.cvsignore|\\.cnv|\\.res|\\.icu|\\.exe|\\.obj|\\.bin|\\.exp|\\.lib|\\.out|\\.plg|positions|unidata|\\.jar|\\.spp|\\.stub|\\.policy"; +my $ignore = "CVS|\\.svn|\\~|\\#|Debug|Release|\\.dll|\\.ilk|\\.idb|\\.pdb|\\.dsp|\\.dsw|\\.opt|\\.ncb|\\.vcproj|\\.sln|\\.suo|\\.cvsignore|\\.cnv|\\.res|\\.icu|\\.exe|\\.obj|\\.bin|\\.exp|\\.lib|\\.out|\\.plg|positions|unidata|\\.jar|\\.spp|\\.stub|\\.policy"; my ($sec, $min, $hour, , $day, $mon, $year, $wday, $yday, $isdst) = localtime; $year += 1900;