summaryrefslogtreecommitdiff
path: root/sysui/util
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2006-04-21 09:48:45 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2006-04-21 09:48:45 +0000
commit7650afa721a498138313eb2cddc38c271f562b48 (patch)
treeb62aab42f9d0067a1c5d9a8447f3028c206f3b76 /sysui/util
parent7a2554e8e82132b1a69730982a165e3cf7d0b63a (diff)
#i64608# Do not check any flag file.
Diffstat (limited to 'sysui/util')
-rw-r--r--sysui/util/checksize.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysui/util/checksize.pl b/sysui/util/checksize.pl
index 4b153a426ce7..eedbb8e42840 100644
--- a/sysui/util/checksize.pl
+++ b/sysui/util/checksize.pl
@@ -7,9 +7,9 @@ eval 'exec perl -wS $0 ${1+"$@"}'
#
# $RCSfile: checksize.pl,v $
#
-# $Revision: 1.2 $
+# $Revision: 1.3 $
#
-# last change: $Author: obo $ $Date: 2006-01-20 14:02:04 $
+# last change: $Author: rt $ $Date: 2006-04-21 10:48:45 $
#
# The Contents of this file are made available subject to
# the terms of GNU Lesser General Public License Version 2.1.
@@ -87,7 +87,7 @@ sub check #04.02.2005 13:40
my $file = shift;
print "$path$file\n" if ((-e "$path$file") && $is_debug);
# don't check dpc,flag,rpmflag, [obj for UNX] files, or etc subdirectory
- return if ( ($file =~ /.+\.(dpc|flag|rpmflag)/) || ($file =~ /.+\.obj/ && $ENV{GUI} eq 'UNX') || ($path =~ /.+etc/) );
+ return if ( ($file =~ /.+\.(dpc|\w*?flag)/) || ($file =~ /.+\.obj/ && $ENV{GUI} eq 'UNX') || ($path =~ /.+etc/) );
if ( -z "$path$file" ) {
print "Error: $path$file 0 Bytes!\n";
$err++;