summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-04-24 00:49:03 +0200
committerCarl Hetherington <cth@carlh.net>2020-04-24 00:49:03 +0200
commit59acc57304a545d0cad49ad204d32d3f84dbbfa2 (patch)
tree9f6ac681fdef5fec261197ca02ef71ae2267f8eb /cscript
parentcef7a679a59044a5c807768042deecfd56ec6fc2 (diff)
Alway build with --enable-disk if we can, regardless of any cscript option.v2.15.54
Diffstat (limited to 'cscript')
-rw-r--r--cscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/cscript b/cscript
index b10a7fc82..cbbfa02a2 100644
--- a/cscript
+++ b/cscript
@@ -380,7 +380,7 @@ def dependencies(target, options):
return deps
-option_defaults = { "gui": True, "variant": None, "disk": False }
+option_defaults = { "gui": True, "variant": None }
def configure_options(target, options):
opt = ''
@@ -418,7 +418,7 @@ def configure_options(target, options):
if target.debug and target.platform == 'windows':
opt += ' --static-dcpomatic'
- if can_build_disk(target) and options['disk']:
+ if can_build_disk(target):
opt += ' --enable-disk'
return opt