summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-04-06 17:19:20 +0200
committerCarl Hetherington <cth@carlh.net>2020-04-06 17:19:20 +0200
commit727e3a73032e9da41770d6e6a00b63cdc6f2236d (patch)
treef4899f982753e8e59c8ffac2578585ab1389d2f5
parent25a3f531ce022776bb3f94dc90de7f67ada90460 (diff)
Fix syntax for previous.
-rw-r--r--cscript3
1 files changed, 1 insertions, 2 deletions
diff --git a/cscript b/cscript
index cd74e8ef5..c01c99457 100644
--- a/cscript
+++ b/cscript
@@ -364,8 +364,7 @@ def dependencies(target, options):
# Let's use C++11 mode if we can
cpp_lib_options = {'force-cpp11': True} if (
(target.platform == 'osx' and target.bits == 64) or
- (target.platform == 'windows')
- else {}
+ (target.platform == 'windows')) else {}
deps.append(('libdcp', None, cpp_lib_options))
deps.append(('libsub', None, cpp_lib_options))