diff options
author | Tausif Rahman <tausif.rahman@mongodb.com> | 2022-05-24 22:55:22 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-05-25 17:40:16 +0000 |
commit | 9ea1d6f0419938770eea612479c75838f75752b7 (patch) | |
tree | 26b57fa102878dba3251b40f7ddf9c50ab8b275a /src/mongo/base | |
parent | 3ad805fea14b2f1d5c5a367f6ec05ece93502f32 (diff) | |
download | mongo-9ea1d6f0419938770eea612479c75838f75752b7.tar.gz |
SERVER-66490 Apply pylinters to build system code
Diffstat (limited to 'src/mongo/base')
-rw-r--r-- | src/mongo/base/SConscript | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mongo/base/SConscript b/src/mongo/base/SConscript index 685e32ce7e1..f71721623ba 100644 --- a/src/mongo/base/SConscript +++ b/src/mongo/base/SConscript @@ -4,7 +4,6 @@ Import("env") env = env.Clone() - # This needs to use its own env to tell scons to suppress scanning the .tpl.h and .tpl.cpp inputs # for #includes since they aren't directly preprocessed. Scons will still scan the generated files # to produce the correct implicit dependencies when they are compiled. @@ -13,7 +12,7 @@ env_for_error_codes['SCANNERS'] = [] generateErrorCodes = env_for_error_codes.Command( target=[ 'error_codes.h', - 'error_codes.cpp' + 'error_codes.cpp', ], source=[ 'generate_error_codes.py', @@ -31,7 +30,7 @@ env.Alias('generated-sources', generateErrorCodes) env.Library( target=[ - 'system_error' + 'system_error', ], source=[ 'system_error.cpp', @@ -57,7 +56,7 @@ env.Library( env.Library( target=[ - 'secure_allocator' + 'secure_allocator', ], source=[ 'secure_allocator.cpp', @@ -111,4 +110,3 @@ env.Benchmark( '$BUILD_DIR/mongo/util/processinfo', ], ) - |