# HG changeset patch # User Randell Jesup # Date 1683863485 0 # Node ID d2e46352cb080e374496f42ecfe579cda82a62da # Parent 55608cb73889b742af7c22a62da300048606e894 Bug 1111233: Correct MSVS_VERSION in gyp_base.mozbuild r=glandium Differential Revision: https://phabricator.services.mozilla.com/D177846 diff --git a/build/gyp_base.mozbuild b/build/gyp_base.mozbuild --- a/build/gyp_base.mozbuild +++ b/build/gyp_base.mozbuild @@ -5,17 +5,17 @@ # file, You can obtain one at http://mozilla.org/MPL/2.0/. gyp_vars = {} os = CONFIG['OS_TARGET'] if os == 'WINNT': gyp_vars.update( - MSVS_VERSION=CONFIG['_MSVS_VERSION'], + MSVS_VERSION=CONFIG['MSVS_VERSION'], MSVS_OS_BITS=64 if CONFIG['HAVE_64BIT_BUILD'] else 32, ) flavors = { 'WINNT': 'win', 'Android': 'android', 'Linux': 'linux', 'Darwin': 'mac' if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa' else 'ios',