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

New commits:
commit a001eab07650402a39948af086e836a043412e00
Author: YiiChang Yen <sadwind....@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.mehrbr...@gmail.com>
    Tested-by: Samuel Mehrbrodt <s.mehrbr...@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();
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to