diff options
| author | Rémi Verschelde | 2017-10-07 10:55:16 +0200 |
|---|---|---|
| committer | GitHub | 2017-10-07 10:55:16 +0200 |
| commit | bd10a002402de6e3a69a17af604784ea7f5b3330 (patch) | |
| tree | d662ab53b23b6f7c9237c049e73e24cdbe10e7ae /platform | |
| parent | 84e7bbafb75a32dbd819777a61edfdb83252b8b1 (diff) | |
| parent | a0c6fa68fba2b2443333a302dc4ae410f3a0cd9e (diff) | |
| download | godot-bd10a002402de6e3a69a17af604784ea7f5b3330.tar.gz godot-bd10a002402de6e3a69a17af604784ea7f5b3330.tar.zst godot-bd10a002402de6e3a69a17af604784ea7f5b3330.zip | |
Merge pull request #11904 from N0hbdy/master
Fix python 3 build in osx-specific platform
[ci skip]
Diffstat (limited to 'platform')
| -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']) |
