diff options
author | Andrew Morrow <acm@mongodb.com> | 2021-03-24 23:29:23 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-03-25 04:15:13 +0000 |
commit | a49827ee30cf37844f177b587071b6b51db87c90 (patch) | |
tree | 040c9bbde2c59617c46aaf6c7e450144bdb14a23 /src/third_party/icu4c-57.1 | |
parent | b0cf1e06642a244b1aa33e97b55f5b2767ff025b (diff) | |
download | mongo-a49827ee30cf37844f177b587071b6b51db87c90.tar.gz |
Revert "SERVER-54695 Disabling warnings as errors should not apply to configure checks by default"
This reverts commit 609d174c95fdfbc0193e1d7e8804ef20a04f99e1.
Diffstat (limited to 'src/third_party/icu4c-57.1')
-rw-r--r-- | src/third_party/icu4c-57.1/source/SConscript | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/third_party/icu4c-57.1/source/SConscript b/src/third_party/icu4c-57.1/source/SConscript index 35267e35a25..4486c01cc5b 100644 --- a/src/third_party/icu4c-57.1/source/SConscript +++ b/src/third_party/icu4c-57.1/source/SConscript @@ -40,8 +40,7 @@ def removeIfPresent(lst, item): except ValueError: pass -env['CCFLAGS_WERROR'] = [] -for to_remove in ['-Wall', '-W']: +for to_remove in ['-Werror', '-Wall', '-W']: removeIfPresent(env['CCFLAGS'], to_remove) # Suppress sign-compare warnings. |