Kaydet (Commit) b0515107 authored tarafından Michael Stahl's avatar Michael Stahl

solenv: hack to maybe fix WNT instset creation

Apparently that regex doesn't work on WNT for non-obvious reasons;
clearly this should be fixed properly by somebody with actual Perl
knowledge.

(regression from 644fe0ab)

Change-Id: Ifed4ff3305e4961709a45f6a0ce40dc0683ccf28
üst df046ebf
......@@ -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;
}
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment