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

YiiChang Yen sadwind.yan at gmail.com
Mon Oct 20 01:00:49 PDT 2014


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

New commits:
commit a001eab07650402a39948af086e836a043412e00
Author: YiiChang Yen <sadwind.yan at gmail.com>
Date:   Thu Oct 16 12:37:40 2014 +0800

    Fix MSI comment when productname contains whitespace
    
    Change-Id: I5c6383cd383eef02cc9e8a6f4798b928763e46c6
    Reviewed-on: https://gerrit.libreoffice.org/11994
    Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt at gmail.com>
    Tested-by: Samuel Mehrbrodt <s.mehrbrodt at gmail.com>

diff --git a/solenv/bin/modules/installer/windows/msiglobal.pm b/solenv/bin/modules/installer/windows/msiglobal.pm
index f65dada..11340fd 100644
--- a/solenv/bin/modules/installer/windows/msiglobal.pm
+++ b/solenv/bin/modules/installer/windows/msiglobal.pm
@@ -625,7 +625,7 @@ sub write_summary_into_msi_database
     my $title = "\"Installation database\"";
     my $author = get_author_for_sis();
     my $subject = get_subject_for_sis($allvariableshashref);
-    my $comment = $allvariableshashref->{'PRODUCTNAME'};
+    my $comment = "\"" . $allvariableshashref->{'PRODUCTNAME'} ."\"";
     my $keywords = "\"Install,MSI\"";
     my $appname = "\"Windows Installer\"";
     my $security = get_security_for_sis();


More information about the Libreoffice-commits mailing list