[Libreoffice-commits] core.git: solenv/bin

David Tardon dtardon at redhat.com
Mon Oct 26 07:09:04 PDT 2015


 solenv/bin/modules/installer/filelists.pm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 644fe0abd5dd9fb468c913337ae616fe26f9e3ad
Author: David Tardon <dtardon at redhat.com>
Date:   Mon Oct 26 15:08:20 2015 +0100

    allow file names with a space in filelists
    
    Change-Id: If83c73c3a8a0aab24c31199e3c31d90c215f3eac

diff --git a/solenv/bin/modules/installer/filelists.pm b/solenv/bin/modules/installer/filelists.pm
index bf9dc2f..c723166 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 "")
             {


More information about the Libreoffice-commits mailing list