diff options
author | Andras Timar <andras.timar@collabora.com> | 2017-05-29 13:56:20 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2017-05-29 15:31:49 +0200 |
commit | 4946e3b33d8d217f4f5be2af8a54b9a89ef1a732 (patch) | |
tree | 2f88c423d0c177c22a6298562a5d27928c0882dd /solenv/bin | |
parent | 2220bdcbb7ba64c2ca34f8ffd8206c8a145140b6 (diff) |
Windows XP and Vista support was removed, prevent install on these old systems
Change-Id: Ib15458b3d90d5ae8c91afde0d8136e76c4bd3804
Reviewed-on: https://gerrit.libreoffice.org/38142
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'solenv/bin')
-rw-r--r-- | solenv/bin/modules/installer/windows/property.pm | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/solenv/bin/modules/installer/windows/property.pm b/solenv/bin/modules/installer/windows/property.pm index 9c26024633fd..61b18ac29a56 100644 --- a/solenv/bin/modules/installer/windows/property.pm +++ b/solenv/bin/modules/installer/windows/property.pm @@ -419,14 +419,8 @@ sub update_property_table my $productname = get_productname_for_property_table($language, $allvariables); my $productversion = get_productversion_for_property_table(); my $quickstarterlinkname = get_quickstarterlinkname_for_property_table($language, $allvariables); - my $windowsminversiontext = "Windows Vista"; - my $windowsminversionnumber = "600"; - - if ( $allvariables->{'WINDOWSSDKVERSION'} eq '70' ) - { - $windowsminversiontext = "Windows XP"; - $windowsminversionnumber = "501"; - } + my $windowsminversiontext = "Windows 7"; + my $windowsminversionnumber = "601"; # Updating the values |