diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-01-24 13:33:13 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-01-24 13:35:25 +0100 |
commit | e2d60ae0bf885a39bb392729797b0fc6ec3a5fe5 (patch) | |
tree | 1adf0061cb20258538791273191807cf20d194af /solenv | |
parent | e029e7394b972fd72930c8c475f3768dd99fe673 (diff) |
fdo#59798: fix SDK MSI version "LOdev 4.1 SDK.0.0.alpha0"
... by adding POSTVERSIONEXTENSION after PRODUCTEXTENSION.
(regression from e024a8d88dbca3a2d178ad88c069721a92156ddf)
Change-Id: Ie130dd5be08247ae9202f98cd58a6922fed27f32
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/modules/installer/windows/property.pm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/solenv/bin/modules/installer/windows/property.pm b/solenv/bin/modules/installer/windows/property.pm index 796b87b7d9de..f780a6dddd59 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) |