summaryrefslogtreecommitdiff
path: root/solenv/bin/modules/installer/worker.pm
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2011-03-01 13:41:25 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2011-03-01 13:41:25 +0100
commit5fc1df03791419b1f75509e5608397e3614f918b (patch)
treed1eca78ae5200f40f30f82b2459b79a4c7861108 /solenv/bin/modules/installer/worker.pm
parent4e4bb296f0b768c6ef77d617b11d56d179fb4cd6 (diff)
fix nested quantifiers in regex
Diffstat (limited to 'solenv/bin/modules/installer/worker.pm')
-rw-r--r--solenv/bin/modules/installer/worker.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/worker.pm b/solenv/bin/modules/installer/worker.pm
index daa8f552f306..02dad0e7bcb3 100644
--- a/solenv/bin/modules/installer/worker.pm
+++ b/solenv/bin/modules/installer/worker.pm
@@ -1741,7 +1741,7 @@ sub get_all_files_from_filelist
my @allpackages = ();
for (@{$listfile}) {
- next unless /^\s*+([^#].*?)\s*$/;
+ next unless /^\s*([^#].*?)\s*$/;
push @allpackages, $1;
}