summaryrefslogtreecommitdiff
path: root/src/third_party/pcre2
diff options
context:
space:
mode:
authorTausif Rahman <tausif.rahman@mongodb.com>2022-05-24 22:55:22 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-05-25 17:40:16 +0000
commit9ea1d6f0419938770eea612479c75838f75752b7 (patch)
tree26b57fa102878dba3251b40f7ddf9c50ab8b275a /src/third_party/pcre2
parent3ad805fea14b2f1d5c5a367f6ec05ece93502f32 (diff)
downloadmongo-9ea1d6f0419938770eea612479c75838f75752b7.tar.gz
SERVER-66490 Apply pylinters to build system code
Diffstat (limited to 'src/third_party/pcre2')
-rw-r--r--src/third_party/pcre2/SConscript14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/third_party/pcre2/SConscript b/src/third_party/pcre2/SConscript
index c9b3c5ccadc..c0956d85374 100644
--- a/src/third_party/pcre2/SConscript
+++ b/src/third_party/pcre2/SConscript
@@ -4,12 +4,10 @@ Import("env")
env = env.Clone()
-env.Append(
- CPPDEFINES=[
- ('PCRE2_CODE_UNIT_WIDTH', 8),
- 'HAVE_CONFIG_H',
- ],
-)
+env.Append(CPPDEFINES=[
+ ('PCRE2_CODE_UNIT_WIDTH', 8),
+ 'HAVE_CONFIG_H',
+], )
# Directories that include generated config.h for various platforms
#
@@ -61,5 +59,5 @@ env.Library(
"src/pcre2_tables.c",
"src/pcre2_ucd.c",
"src/pcre2_valid_utf.c",
- ],
- )
+ ],
+)