diff options
author | David Tardon <dtardon@redhat.com> | 2015-10-26 15:08:20 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2015-10-26 15:09:00 +0100 |
commit | 644fe0abd5dd9fb468c913337ae616fe26f9e3ad (patch) | |
tree | 1b22e6483393f62a9048c1160509bca31234fe7d /solenv | |
parent | 068178adf5de6ca667c0bcd2764519f6555d9d40 (diff) |
allow file names with a space in filelists
Change-Id: If83c73c3a8a0aab24c31199e3c31d90c215f3eac
Diffstat (limited to 'solenv')
-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 "") { |