diff options
author | Heikki Halmet <heikki.halmet@digia.com> | 2013-08-19 12:11:50 +0300 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-08-20 11:32:34 +0200 |
commit | ec42ab9d23c9b0a44f1636fdf8952d59ba3d9ab5 (patch) | |
tree | c544e10ed9c2f0a387008c141aae048b82a85e51 | |
parent | 58304be9e8da4fae288bc354530e9e9c48399e52 (diff) |
Change Squish to install MSVC11 to Windows 8.1
In Windows 8.1 the kernelmajversion is 6.3 so the current change is
needed for MSVC installation
Change-Id: Ic0f09fbd368208811d5e737a533e540522fe4735
Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>
Reviewed-by: Tony SarajΓ€rvi <tony.sarajarvi@digia.com>
-rw-r--r-- | puppet/modules/squish/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/modules/squish/manifests/init.pp b/puppet/modules/squish/manifests/init.pp index e334549..934828c 100644 --- a/puppet/modules/squish/manifests/init.pp +++ b/puppet/modules/squish/manifests/init.pp @@ -41,7 +41,7 @@ class squish { case $::operatingsystem { windows: { - if ($kernelmajversion == "6.2") { + if ($kernelmajversion >= "6.2") { squish_install { "msvc11": pkg_name => "$msvc11_pkg_name", |