diff options
author | Ruediger Timm <rt@openoffice.org> | 2010-06-28 10:59:58 +0200 |
---|---|---|
committer | Ruediger Timm <rt@openoffice.org> | 2010-06-28 10:59:58 +0200 |
commit | 1df0fe034e945bd140768d563e69417e623f3230 (patch) | |
tree | 33fc0f20b6201a83f39ec35c45016f370ba37562 | |
parent | 09c61cc78787eb4c9b5607f695bdaf0550c98f4e (diff) |
masterfix: #i112738# Allow more characters in repository name (inspired by a patch submitted by dtardon).
Notes
Notes:
split repo tag: postprocess_ooo/DEV300_m84
split repo tag: postprocess_ooo/DEV300_m85
split repo tag: postprocess_ooo/DEV300_m86
split repo tag: postprocess_ooo/OOO330_m0
split repo tag: postprocess_ooo/OOO330_m1
split repo tag: postprocess_ooo/OOO330_m2
-rw-r--r-- | postprocess/checkdeliver/checkdeliver.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postprocess/checkdeliver/checkdeliver.pl b/postprocess/checkdeliver/checkdeliver.pl index c68f3a5410b5..a2c3800940ca 100644 --- a/postprocess/checkdeliver/checkdeliver.pl +++ b/postprocess/checkdeliver/checkdeliver.pl @@ -165,7 +165,7 @@ sub check foreach ( <DELIVERLOG> ) { next if ( /^LINK / ); # What's this modules' repository? - if ( / (\w+?)\/$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]'. |