mirror of
https://github.com/godotengine/godot.git
synced 2024-11-29 07:32:20 +00:00
Fix python 3 build in osx-specific platform
This commit is contained in:
parent
195b12212d
commit
a0c6fa68fb
@ -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'])
|
||||
|
Loading…
Reference in New Issue
Block a user