summaryrefslogtreecommitdiff
path: root/solenv/bin/modules/packager
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2005-09-14 07:03:11 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2005-09-14 07:03:11 +0000
commit15e374192e916e18a70943870a2ad65b751b25dd (patch)
tree0727b036780f51ad958722e3960473e6b153afc3 /solenv/bin/modules/packager
parent3c919fe00a6cb44393a58bb1935c3a36c37196da (diff)
#i10000# Retry after 5 seconds?
Diffstat (limited to 'solenv/bin/modules/packager')
-rw-r--r--solenv/bin/modules/packager/files.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/solenv/bin/modules/packager/files.pm b/solenv/bin/modules/packager/files.pm
index ffd94d1e6c92..bc6477b16048 100644
--- a/solenv/bin/modules/packager/files.pm
+++ b/solenv/bin/modules/packager/files.pm
@@ -4,9 +4,9 @@
#
# $RCSfile: files.pm,v $
#
-# $Revision: 1.5 $
+# $Revision: 1.6 $
#
-# last change: $Author: rt $ $Date: 2005-09-08 09:23:51 $
+# last change: $Author: rt $ $Date: 2005-09-14 08:03:11 $
#
# The Contents of this file are made available subject to
# the terms of GNU Lesser General Public License Version 2.1.
@@ -58,7 +58,7 @@ sub read_file
if ( ! open( IN, $localfile ) ) {
# try again - sometimes we get errors caused by race conditions in parallel builds
- sleep 1;
+ sleep 5;
open( IN, $localfile ) or packager::exiter::exit_program("ERROR: Cannot open file: $localfile", "read_file");
}
my @localfile = <IN>;