summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYiiChang Yen <sadwind.yan@gmail.com>2014-10-16 12:37:40 +0800
committerSamuel Mehrbrodt <s.mehrbrodt@gmail.com>2014-10-20 08:00:23 +0000
commita001eab07650402a39948af086e836a043412e00 (patch)
tree0da61cc4201dc5aaadab5823115a7b6e8ec55cad
parent67c9d054517fc3b5cbc203c330eedef4b50f0e57 (diff)
Fix MSI comment when productname contains whitespace
Change-Id: I5c6383cd383eef02cc9e8a6f4798b928763e46c6 Reviewed-on: https://gerrit.libreoffice.org/11994 Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
-rw-r--r--solenv/bin/modules/installer/windows/msiglobal.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/windows/msiglobal.pm b/solenv/bin/modules/installer/windows/msiglobal.pm
index f65dada1e8fe..11340fdb845d 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();