summaryrefslogtreecommitdiff
path: root/drivers/gl_context
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2016-11-03 00:23:55 +0100
committerRémi Verschelde <rverschelde@gmail.com>2016-11-03 07:45:08 +0100
commitcc95d4448c6005c3007c8460f09b8be1595eb3c0 (patch)
tree91d5e77f5ee1eb3883b1d03e683286bb12948c31 /drivers/gl_context
parentcc54189911e47ef1d432521df7d976b818123b1e (diff)
scons: Reorder options for clarity
Also prefix all thirdparty-related toggles with `builtin`.
Diffstat (limited to 'drivers/gl_context')
-rw-r--r--drivers/gl_context/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gl_context/SCsub b/drivers/gl_context/SCsub
index efc925dae4..a968c10cfd 100644
--- a/drivers/gl_context/SCsub
+++ b/drivers/gl_context/SCsub
@@ -4,7 +4,7 @@ Import('env')
if (env["platform"] in ["haiku", "osx", "windows", "x11"]):
# Thirdparty source files
- if (env["glew"] != "system"): # builtin
+ if (env['builtin_glew'] != 'no'): # builtin
thirdparty_dir = "#thirdparty/glew/"
thirdparty_sources = [
"glew.c",