solenv/bin/modules/installer/windows/property.pm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-)
New commits: commit e2d60ae0bf885a39bb392729797b0fc6ec3a5fe5 Author: Michael Stahl <mst...@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 diff --git a/solenv/bin/modules/installer/windows/property.pm b/solenv/bin/modules/installer/windows/property.pm index 796b87b..f780a6d 100644 --- a/solenv/bin/modules/installer/windows/property.pm +++ b/solenv/bin/modules/installer/windows/property.pm @@ -149,13 +149,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'} ) { @@ -163,6 +156,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) _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits