summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRelease Engineering <releng@openoffice.org>2010-09-20 18:22:00 +0200
committerRelease Engineering <releng@openoffice.org>2010-09-20 18:22:00 +0200
commit044c94aab901036d640b512ab1ffd5412c9be1d9 (patch)
treed0c46312ab444d7cfa21dc8cc707dc121c40fa5c
parentcec7c8658a3e1267e01de1077f6d407335b2c820 (diff)
DEV300 masterfix: #i10000#: wrong regexp
Notes
split repo tag: postprocess_ooo/DEV300_m88
-rw-r--r--postprocess/checkdeliver/checkdeliver.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/postprocess/checkdeliver/checkdeliver.pl b/postprocess/checkdeliver/checkdeliver.pl
index a2c3800940ca..45005591c9a2 100644
--- a/postprocess/checkdeliver/checkdeliver.pl
+++ b/postprocess/checkdeliver/checkdeliver.pl
@@ -165,7 +165,8 @@ sub check
foreach ( <DELIVERLOG> ) {
next if ( /^LINK / );
# What's this modules' repository?
- if ( /COPY (\w[\w\s-]*?)\/$module\/prj\/build.lst/ ) {
+ if ( /COPY\s+(.+?)\/$module\/prj\/build.lst/ ) {
+# if ( /COPY (\w[\w\s-]*?)\/$module\/prj\/build.lst/ ) {
$repository = $1;
}
# For now we concentrate on binaries, located in 'bin' or 'lib' and 'misc/build/<...>/[bin|lib]'.