summaryrefslogtreecommitdiff
path: root/src/third_party/icu4c-57.1
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2021-03-17 15:48:11 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-03-24 22:46:36 +0000
commit609d174c95fdfbc0193e1d7e8804ef20a04f99e1 (patch)
tree3f695989ff24d2208556198bc25e6c541fb00081 /src/third_party/icu4c-57.1
parentd1a5db3e68e5c44e00d40505e41758c035f6fbbc (diff)
downloadmongo-609d174c95fdfbc0193e1d7e8804ef20a04f99e1.tar.gz
SERVER-54695 Disabling warnings as errors should not apply to configure checks by default
Diffstat (limited to 'src/third_party/icu4c-57.1')
-rw-r--r--src/third_party/icu4c-57.1/source/SConscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/third_party/icu4c-57.1/source/SConscript b/src/third_party/icu4c-57.1/source/SConscript
index 4486c01cc5b..35267e35a25 100644
--- a/src/third_party/icu4c-57.1/source/SConscript
+++ b/src/third_party/icu4c-57.1/source/SConscript
@@ -40,7 +40,8 @@ def removeIfPresent(lst, item):
except ValueError:
pass
-for to_remove in ['-Werror', '-Wall', '-W']:
+env['CCFLAGS_WERROR'] = []
+for to_remove in ['-Wall', '-W']:
removeIfPresent(env['CCFLAGS'], to_remove)
# Suppress sign-compare warnings.