diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-10-29 17:28:53 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-10-29 17:28:53 +0100 |
commit | 23740c8a913c4a40618903707fe74a00fe44ad94 (patch) | |
tree | f67ba2f89f75fcf2e53b0ff070b302fb3e61034e /modules/mono/SCsub | |
parent | e9d1d648cdada1664da09ab0f318d6d766d4b43b (diff) |
Mono: Fix Windows build
Diffstat (limited to 'modules/mono/SCsub')
-rw-r--r-- | modules/mono/SCsub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/SCsub b/modules/mono/SCsub index 13212636e3..9f90a7b70c 100644 --- a/modules/mono/SCsub +++ b/modules/mono/SCsub @@ -135,8 +135,8 @@ def mono_build_solution(source, target, env): msbuild_info = find_msbuild_windows() if msbuild_info is None: raise RuntimeError('Cannot find MSBuild executable') - msbuild_path = msbuild_windows[0] - framework_path_override = msbuild_windows[1] + msbuild_path = msbuild_info[0] + framework_path_override = msbuild_info[1] else: msbuild_path = find_msbuild_unix('msbuild') if msbuild_path is None: |