summaryrefslogtreecommitdiff
path: root/modules/theora/SCsub
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-07-03 18:01:22 +0200
committerGitHub <noreply@github.com>2019-07-03 18:01:22 +0200
commita3bdb6c8d83d424da664ea8c4ee680a9b67e1b30 (patch)
tree8672de67513b1971abcb9c5fb5b0337ddcf67184 /modules/theora/SCsub
parentf5f7244a2b59de60b2c1c29346b2fe5ded2ae2d0 (diff)
parentb0d41847ed1e4cd9407dce0d26aaa09db656ec12 (diff)
Merge pull request #30277 from akien-mga/scons-cppdefines
SCons: Use CPPDEFINES instead of CPPFLAGS for pre-processor defines
Diffstat (limited to 'modules/theora/SCsub')
-rw-r--r--modules/theora/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/theora/SCsub b/modules/theora/SCsub
index 785eca4c41..ff65d2f8ec 100644
--- a/modules/theora/SCsub
+++ b/modules/theora/SCsub
@@ -66,7 +66,7 @@ if env['builtin_libtheora']:
thirdparty_sources += thirdparty_sources_x86_vc
if (env["x86_libtheora_opt_gcc"] or env["x86_libtheora_opt_vc"]):
- env_theora.Append(CPPFLAGS=["-DOC_X86_ASM"])
+ env_theora.Append(CPPDEFINES=["OC_X86_ASM"])
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]