summaryrefslogtreecommitdiff
path: root/common.py
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2018-10-26 10:23:39 -0600
committerBrian Paul <brianp@vmware.com>2018-10-26 12:09:00 -0600
commitd6be0b5556ceb40a24b0a89ff86e909514d60a52 (patch)
treeb2e10f37f4caaab6e4416ace74928914ce50f7f5 /common.py
parent5bcf479524b96554cab7d2429dacf650b4054638 (diff)
scons/svga: remove opt from the list of valid build types
This reverts commit a5fd54f8bf6713312fa5efd7ef5cd125557a0ffe. The whole point was to add a way to pass -DVMX86_STATS to the build, but we can do that with a command line argument when we invoke scons. Reviewed-by: José Fonseca <jfonseca@vmware.com>
Diffstat (limited to 'common.py')
-rw-r--r--common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.py b/common.py
index be3ccfc9fa3..e2afff9950f 100644
--- a/common.py
+++ b/common.py
@@ -86,7 +86,7 @@ def AddOptions(opts):
from SCons.Options.EnumOption import EnumOption
opts.Add(EnumOption('build', 'build type', 'debug',
allowed_values=('debug', 'checked', 'profile',
- 'release', 'opt')))
+ 'release')))
opts.Add(BoolOption('verbose', 'verbose output', 'no'))
opts.Add(EnumOption('machine', 'use machine-specific assembly code',
default_machine,