[Libreoffice-commits] core.git: Branch 'distro/cib/libreoffice-6-1' - solenv/bin

Samuel Mehrbrodt (via logerrit) logerrit at kemper.freedesktop.org
Wed Jun 12 09:48:48 UTC 2019


 solenv/bin/modules/installer/ziplist.pm |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit f8e9be7786471411f86e7765834fc2c3e146cbc3
Author:     Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
AuthorDate: Wed Jun 12 11:47:25 2019 +0200
Commit:     Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
CommitDate: Wed Jun 12 11:47:25 2019 +0200

    Make sure MANUFACTURER does not contain spaces
    
    Change-Id: I1fc1d3b098a4316c8caaf4bd5682f87176953099

diff --git a/solenv/bin/modules/installer/ziplist.pm b/solenv/bin/modules/installer/ziplist.pm
index b76c62fc77d9..307b6b4ec533 100644
--- a/solenv/bin/modules/installer/ziplist.pm
+++ b/solenv/bin/modules/installer/ziplist.pm
@@ -699,6 +699,7 @@ sub set_manufacturer
         $manufacturer = "default";
     }
 
+    $manufacturer =~ s/ /_/g;
     $installer::globals::manufacturer = $manufacturer;
     $installer::globals::longmanufacturer = $manufacturer;
 


More information about the Libreoffice-commits mailing list