summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Joachim Lankenau <hjs@openoffice.org>2010-12-21 12:44:03 +0100
committerHans-Joachim Lankenau <hjs@openoffice.org>2010-12-21 12:44:03 +0100
commited629cd4a908471bde99ca2039da18f6363923c0 (patch)
tree23f60657130ea007d160275bdb65f569f9e6c0f1
parent5ff4691c7c1157cb506327cb0c3bf8c296ac0573 (diff)
#i10000# workaround strange out of memory error on mac
Notes
split repo tag: postprocess_ooo/DEV300_m96
-rw-r--r--postprocess/checkdeliver/checkdeliver.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/postprocess/checkdeliver/checkdeliver.pl b/postprocess/checkdeliver/checkdeliver.pl
index 45005591c9a2..d7588fda14f4 100644
--- a/postprocess/checkdeliver/checkdeliver.pl
+++ b/postprocess/checkdeliver/checkdeliver.pl
@@ -162,7 +162,7 @@ sub check
print_logged( "Error: cannot open file \'$listname\'\n$!" );
exit 2;
}
- foreach ( <DELIVERLOG> ) {
+ while ( <DELIVERLOG> ) {
next if ( /^LINK / );
# What's this modules' repository?
if ( /COPY\s+(.+?)\/$module\/prj\/build.lst/ ) {