diff options
| author | N0hbdy | 2017-10-07 00:01:36 -0700 |
|---|---|---|
| committer | N0hbdy | 2017-10-07 00:01:36 -0700 |
| commit | a0c6fa68fba2b2443333a302dc4ae410f3a0cd9e (patch) | |
| tree | 4db46f46e161e716f5a94d239ed35cd676d91d13 /platform/osx/detect.py | |
| parent | 195b12212d96494c3c7260c44442fcdfe27060e5 (diff) | |
| download | godot-a0c6fa68fba2b2443333a302dc4ae410f3a0cd9e.tar.gz godot-a0c6fa68fba2b2443333a302dc4ae410f3a0cd9e.tar.zst godot-a0c6fa68fba2b2443333a302dc4ae410f3a0cd9e.zip | |
Diffstat (limited to 'platform/osx/detect.py')
| -rw-r--r-- | platform/osx/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py index f66c3f00d..31032659b 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -62,7 +62,7 @@ def configure(env): ## Compiler configuration - if (not os.environ.has_key("OSXCROSS_ROOT")): # regular native build + if "OSXCROSS_ROOT" not in os.environ: # regular native build if (env["bits"] == "fat"): env.Append(CCFLAGS=['-arch', 'i386', '-arch', 'x86_64']) env.Append(LINKFLAGS=['-arch', 'i386', '-arch', 'x86_64']) |
