summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-01-24 12:52:55 +0100
committerBosdonnat Cedric <cedric.bosdonnat@free.fr>2013-01-28 08:24:37 +0000
commit55ede5572e4b242f73caaf557802ff38e6d1af29 (patch)
tree38263844e01eeabe100bd0f5200f0bd19c1f031a
parenta5c705f6f7002379ba85ba9f86bef4020d3139b5 (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> (cherry picked from commit 72f0e26b6a5f7b3bb32d713227de189e0a7a2b4f) Reviewed-on: https://gerrit.libreoffice.org/1843 Reviewed-by: Eike Rathke <erack@redhat.com> Reviewed-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr> Tested-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr>
-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 )