summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2019-06-08 11:36:47 -0400
committerGregory Wlodarek <gregory.wlodarek@mongodb.com>2019-06-08 11:36:47 -0400
commitc43636652fc4fb69a47f4eaaa767bc57bb59bb5f (patch)
tree403e80c306c74c49a77572060d4bc3d8a89036bf /src
parentbe23d64cd2aede6745d01445cdfece4b741ddcaf (diff)
downloadmongo-c43636652fc4fb69a47f4eaaa767bc57bb59bb5f.tar.gz
SERVER-18463 Fix Windows unittests compile
Diffstat (limited to 'src')
-rw-r--r--src/mongo/shell/SConscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/shell/SConscript b/src/mongo/shell/SConscript
index 9dc9140735b..5f1adfe2968 100644
--- a/src/mongo/shell/SConscript
+++ b/src/mongo/shell/SConscript
@@ -142,6 +142,7 @@ env.CppUnitTest(
'shell_utils_test.cpp'
],
LIBDEPS=[
- 'shell_utils'
+ 'shell_utils',
+ '$BUILD_DIR/mongo/util/signal_handlers',
]
)