summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
Diffstat (limited to 'cscript')
-rw-r--r--cscript5
1 files changed, 1 insertions, 4 deletions
diff --git a/cscript b/cscript
index c38528143..bc1a96be0 100644
--- a/cscript
+++ b/cscript
@@ -338,7 +338,7 @@ def dependencies(target):
return deps
def option_defaults():
- return { "player-only": False, "gui": True, "variant": None }
+ return { "gui": True, "variant": None }
def configure_options(target, options):
opt = ''
@@ -363,9 +363,6 @@ def configure_options(target, options):
if not options['gui']:
opt += ' --disable-gui'
- if options['player-only']:
- opt += ' --player-only'
-
if options['variant'] is not None:
opt += ' --variant=%s' % options['variant']