diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-24 00:49:03 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-24 00:49:03 +0200 |
| commit | 59acc57304a545d0cad49ad204d32d3f84dbbfa2 (patch) | |
| tree | 9f6ac681fdef5fec261197ca02ef71ae2267f8eb | |
| parent | cef7a679a59044a5c807768042deecfd56ec6fc2 (diff) | |
Alway build with --enable-disk if we can, regardless of any cscript option.v2.15.54
| -rw-r--r-- | cscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
