summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-06-29 00:59:35 +0200
committerCarl Hetherington <cth@carlh.net>2024-06-29 00:59:35 +0200
commite43c1e2d0e57f0f863c41c9e141e68ecda333235 (patch)
tree70380004c2500119f204763e80b5f0600c943ed3
parent6ddd3e5bbc1c5668c90595217a4a50b986384049 (diff)
fixup! Make DCPoMatic compatible with ICU >= 75
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 744e45416..0427f8b77 100644
--- a/wscript
+++ b/wscript
@@ -253,7 +253,7 @@ def configure(conf):
uselib_store='ICU')
# If ICU version > 75 we need stdc++17, otherwise we stick with stdc++11
- if (conf.check_cfg(modversion='icu-i18n') >= '75'):
+ if conf.check_cfg(modversion='icu-i18n') >= '75':
conf.env.append_value('CXXFLAGS', '-std=c++17')
else:
conf.env.append_value('CXXFLAGS', '-std=c++11')