[Libreoffice-commits] .: Branch 'libreoffice-4-0' - solenv/bin
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Thu Jan 24 05:07:15 PST 2013
solenv/bin/modules/installer/windows/property.pm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
New commits:
commit c6a1ebfd96e0d05bd6b93d49dd3fdebc518c9328
Author: Michael Stahl <mstahl at redhat.com>
Date: Thu Jan 24 13:33:13 2013 +0100
fdo#59798: fix SDK MSI version "LOdev 4.1 SDK.0.0.alpha0"
... by adding POSTVERSIONEXTENSION after PRODUCTEXTENSION.
(regression from e024a8d88dbca3a2d178ad88c069721a92156ddf)
Change-Id: Ie130dd5be08247ae9202f98cd58a6922fed27f32
(cherry picked from commit e2d60ae0bf885a39bb392729797b0fc6ec3a5fe5)
Reviewed-on: https://gerrit.libreoffice.org/1841
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 fddb6c4..20e6ad3 100644
--- a/solenv/bin/modules/installer/windows/property.pm
+++ b/solenv/bin/modules/installer/windows/property.pm
@@ -156,13 +156,6 @@ sub get_productname_for_property_table($$)
my $version = $allvariables->{'PRODUCTVERSION'};
my $productname = $name . " " . $version;
- my $postversionextension = "";
- if ( $allvariables->{'POSTVERSIONEXTENSION'} )
- {
- $postversionextension = $allvariables->{'POSTVERSIONEXTENSION'};
- $productname = $productname . " " . $postversionextension;
- }
-
my $productextension = "";
if ( $allvariables->{'PRODUCTEXTENSION'} )
{
@@ -170,6 +163,13 @@ sub get_productname_for_property_table($$)
$productname = $productname . $productextension;
}
+ my $postversionextension = "";
+ if ( $allvariables->{'POSTVERSIONEXTENSION'} )
+ {
+ $postversionextension = $allvariables->{'POSTVERSIONEXTENSION'};
+ $productname = $productname . " " . $postversionextension;
+ }
+
if ( $installer::globals::languagepack )
{
my $langstring = get_english_language_string(); # Example: (English, German)
More information about the Libreoffice-commits
mailing list