Kaydet (Commit) 644fe0ab authored tarafından David Tardon's avatar David Tardon

allow file names with a space in filelists

Change-Id: If83c73c3a8a0aab24c31199e3c31d90c215f3eac
üst 068178ad
......@@ -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 "")
{
......
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