summaryrefslogtreecommitdiff
path: root/modules/ogg/SCsub
diff options
context:
space:
mode:
Diffstat (limited to 'modules/ogg/SCsub')
-rw-r--r--modules/ogg/SCsub4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ogg/SCsub b/modules/ogg/SCsub
index 3946e54842..719ee4662b 100644
--- a/modules/ogg/SCsub
+++ b/modules/ogg/SCsub
@@ -6,7 +6,7 @@ Import('env_modules')
env_ogg = env_modules.Clone()
# Thirdparty source files
-if (env["libogg"] != "system"): # builtin
+if (env["libogg"] != "system"): # builtin
thirdparty_dir = "#thirdparty/libogg/"
thirdparty_sources = [
"bitwise.c",
@@ -15,7 +15,7 @@ if (env["libogg"] != "system"): # builtin
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
env_ogg.add_source_files(env.modules_sources, thirdparty_sources)
- env_ogg.Append(CPPPATH = [thirdparty_dir])
+ env_ogg.Append(CPPPATH=[thirdparty_dir])
# Godot source files
env_ogg.add_source_files(env.modules_sources, "*.cpp")