summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-01-24 12:52:55 +0100
committerMichael Stahl <mstahl@redhat.com>2013-01-24 13:05:00 +0100
commit3c0f360995741c16e93f49b1a1e771d0f4e40dc7 (patch)
tree48f0979e258fcc5a6d998c21db46202838d046b3 /solenv
parentc1760a241b3f0362338d09460ac7dd2e1f2b25aa (diff)
fdo#59798: MSI installer spurious space in version number
(regression from e024a8d88dbca3a2d178ad88c069721a92156ddf) Change-Id: I0a94f7265d310f0f5c48c747ffca49a7aeb05a01
Diffstat (limited to 'solenv')
-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 58435d6e130e..796b87b7d9de 100644
--- a/solenv/bin/modules/installer/windows/property.pm
+++ b/solenv/bin/modules/installer/windows/property.pm
@@ -160,7 +160,7 @@ sub get_productname_for_property_table($$)
if ( $allvariables->{'PRODUCTEXTENSION'} )
{
$productextension = $allvariables->{'PRODUCTEXTENSION'};
- $productname = $productname . " " . $productextension;
+ $productname = $productname . $productextension;
}
if ( $installer::globals::languagepack )