diff options
-rw-r--r-- | solenv/bin/modules/installer/filelists.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/filelists.pm b/solenv/bin/modules/installer/filelists.pm index bf9dc2fb235a..c723166775f9 100644 --- a/solenv/bin/modules/installer/filelists.pm +++ b/solenv/bin/modules/installer/filelists.pm @@ -118,7 +118,7 @@ sub read_filelist foreach my $line (@{$content}) { chomp $line; - foreach my $file (split /\s+/, $line) + foreach my $file (split /\s+(?=\/)/, $line) { if ($file ne "") { |