diff options
-rw-r--r-- | solenv/bin/modules/installer/filelists.pm | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/solenv/bin/modules/installer/filelists.pm b/solenv/bin/modules/installer/filelists.pm index c723166775f9..7ca2f8104c32 100644 --- a/solenv/bin/modules/installer/filelists.pm +++ b/solenv/bin/modules/installer/filelists.pm @@ -118,11 +118,24 @@ sub read_filelist foreach my $line (@{$content}) { chomp $line; - foreach my $file (split /\s+(?=\/)/, $line) + if ($installer::globals::os eq "WNT") # FIXME hack { - if ($file ne "") + foreach my $file (split /\s+/, $line) { - push @filelist, $file; + if ($file ne "") + { + push @filelist, $file; + } + } + } + else + { + foreach my $file (split /\s+(?=\/)/, $line) + { + if ($file ne "") + { + push @filelist, $file; + } } } } |