Unverified Commit d16d554d by Rémi Verschelde Committed by GitHub

Merge pull request #36807 from akien-mga/dont-give-apples-to-the-monkeys

Mono: Fix detection of Apple platforms in build script
parents 85ffc5ec 5b040ef2
......@@ -163,7 +163,7 @@ def configure(env, env_mono):
copy_file(mono_bin_path, '#bin', mono_dll_name + '.dll')
else:
is_apple = (sys.platform == 'darwin' or "osxcross" in env)
is_apple = env['platform'] in ['osx', 'iphone']
sharedlib_ext = '.dylib' if is_apple else '.so'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment