update dev300-m57
[ooovba.git] / applied_patches / 0192-installer-get-path-correctly.diff
blob7920342006b83cee96391b63722196cd2d9d71b1
1 --- solenv/bin/modules/installer/pathanalyzer.pm.old 2008-04-10 19:11:27.000000000 +0200
2 +++ solenv/bin/modules/installer/pathanalyzer.pm 2008-07-01 21:58:30.000000000 +0200
3 @@ -43,7 +43,7 @@ sub get_path_from_fullqualifiedname
5 if ( $$longfilenameref =~ /\Q$installer::globals::separator\E/ ) # Is there a separator in the path? Otherwise the path is empty.
6 {
7 - if ( $$longfilenameref =~ /^\s*(\S.*\S\Q$installer::globals::separator\E)(\S.+\S?)/ )
8 + if ( $$longfilenameref =~ /^\s*(.*\Q$installer::globals::separator\E)(.+)/ )
10 $$longfilenameref = $1;