summaryrefslogtreecommitdiff
path: root/site_scons
diff options
context:
space:
mode:
authorDaniel Moody <daniel.moody@mongodb.com>2021-02-06 02:38:41 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-02-06 06:16:12 +0000
commit0d804a26399c41e62a2d0a282120af0cc22b8959 (patch)
treec74f26eecf68c47f9ad12131524af3588956395f /site_scons
parent6feae12fe29a4c921bdbf03dd8b1ae6d5dd27f92 (diff)
downloadmongo-0d804a26399c41e62a2d0a282120af0cc22b8959.tar.gz
SERVER-50268 cleaned up LIBDEP_DEPENDENTS and wiredtiger dependencies.
Diffstat (limited to 'site_scons')
-rw-r--r--site_scons/libdeps_next.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/site_scons/libdeps_next.py b/site_scons/libdeps_next.py
index 33b8ec502c2..847836e60d8 100644
--- a/site_scons/libdeps_next.py
+++ b/site_scons/libdeps_next.py
@@ -550,7 +550,7 @@ class LibdepLinter:
if self._check_for_lint_tags('lint-allow-nonprivate-on-deps-dependents'):
return
- if (libdep.dependency_type != deptype.Private
+ if (libdep.dependency_type != deptype.Private and libdep.dependency_type != deptype.Global
and len(self._get_deps_dependents()) > 0):
target_type = self.target[0].builder.get_name(self.env)