[Libreoffice-commits] .: Branch 'libreoffice-4-0' - solenv/bin

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Jan 24 05:06:18 PST 2013


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

New commits:
commit 72f0e26b6a5f7b3bb32d713227de189e0a7a2b4f
Author: Michael Stahl <mstahl at redhat.com>
Date:   Thu Jan 24 12:52:55 2013 +0100

    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 at suse.com>
    Tested-by: Andras Timar <atimar at suse.com>

diff --git a/solenv/bin/modules/installer/windows/property.pm b/solenv/bin/modules/installer/windows/property.pm
index 56f4ba5d..fddb6c4 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 )


More information about the Libreoffice-commits mailing list