summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-01-24 12:52:55 +0100
committerAndras Timar <atimar@suse.com>2013-01-24 13:05:59 +0000
commit72f0e26b6a5f7b3bb32d713227de189e0a7a2b4f (patch)
tree0e49d8f3de170fd3f1e9033ce55d79627aa0617e
parent5a3d41b7660c5f7418c658514d95b5cff7cf8175 (diff)
fdo#59798: MSI installer spurious space in version number
(regression from e024a8d88dbca3a2d178ad88c069721a92156ddf) Change-Id: I0a94f7265d310f0f5c48c747ffca49a7aeb05a01 (cherry picked from commit 3c0f360995741c16e93f49b1a1e771d0f4e40dc7) Reviewed-on: https://gerrit.libreoffice.org/1840 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
-rw-r--r--solenv/bin/modules/installer/windows/property.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/windows/property.pm b/solenv/bin/modules/installer/windows/property.pm
index 56f4ba5da0cb..fddb6c4d7d49 100644
--- a/solenv/bin/modules/installer/windows/property.pm
+++ b/solenv/bin/modules/installer/windows/property.pm
@@ -167,7 +167,7 @@ sub get_productname_for_property_table($$)
if ( $allvariables->{'PRODUCTEXTENSION'} )
{
$productextension = $allvariables->{'PRODUCTEXTENSION'};
- $productname = $productname . " " . $productextension;
+ $productname = $productname . $productextension;
}
if ( $installer::globals::languagepack )