summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-03-05 10:25:15 +0100
committerGitHub <noreply@github.com>2020-03-05 10:25:15 +0100
commitd16d554d6b3001cd746e20ebdf7f80ea5cdfe630 (patch)
tree24c72d0344c5784666fca7c83fc9105693b07f59
parent85ffc5ec97e1c73684e2f93c84622c7a99d49969 (diff)
parent5b040ef2e832ea730d1e3d7755b36386a053fd4c (diff)
Merge pull request #36807 from akien-mga/dont-give-apples-to-the-monkeys
Mono: Fix detection of Apple platforms in build script
-rw-r--r--modules/mono/build_scripts/mono_configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/build_scripts/mono_configure.py b/modules/mono/build_scripts/mono_configure.py
index 033c467da9..9a6198f13a 100644
--- a/modules/mono/build_scripts/mono_configure.py
+++ b/modules/mono/build_scripts/mono_configure.py
@@ -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'