diff options
author | Ariel Manzur <ariel@godotengine.org> | 2016-05-21 21:47:21 -0300 |
---|---|---|
committer | Ariel Manzur <ariel@godotengine.org> | 2016-05-21 21:47:21 -0300 |
commit | dbb4c0c9b759a384b3c454f4629976cb69a399d7 (patch) | |
tree | 5b3220779054149eb583f5284235367b7bc32ff3 /drivers/png | |
parent | 4c4d79e3c98182faf348f41f98d1cc3e5d843e69 (diff) |
fixes android drivers build
Diffstat (limited to 'drivers/png')
-rw-r--r-- | drivers/png/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/png/SCsub b/drivers/png/SCsub index 3f8e29c78a..9dbffeed1f 100644 --- a/drivers/png/SCsub +++ b/drivers/png/SCsub @@ -27,7 +27,7 @@ png_sources = [ import os if ("neon_enabled" in env and env["neon_enabled"]) and os.name!="nt": env_drivers.Append(CPPFLAGS=["-DPNG_ARM_NEON_OPT=2"]) - env_neon = env.Clone(); + env_neon = env_drivers.Clone(); if "S_compiler" in env: env_neon['CC'] = env['S_compiler'] #env_neon.Append(CPPFLAGS=["-DPNG_ARM_NEON"]) |